风波过后

作者:shih 发布时间:October 28, 2007 分类:Journal

博客的上个IP给GFW河蟹了,有段时间不能打开,而且那段时间自己正在郑州,回到家后忽然发现不能访问,开始以为是DH经了。不过等来等去不见好,然后挂代理OK,终于知道是给河蟹了,不过还好把米重新绑了一下DH给换个IP现在一切搞定了。又能访问了。

而且PR也升到了3,虽然比自己想到可能会到4少了那么一点点,不过有总比没有好。

自己的低迷时期不知道要到什么时候可以结束。

加油,努力!

一直等不到越狱,原来是停播一周

作者:shih 发布时间:October 21, 2007 分类:Media

估计各位越狱迷都知道了吧。说是有棒球比赛不给越狱放了。干!

详细看这里

**FOX SPORTS SPECIAL**
MAJOR LEAGUE BASEBALL—ALCS GAME #3

FOX SPORTS PRESENTS GAME 3 OF THE AMERICAN LEAGUE CHAMPIONSHIP SERIES MONDAY, OCTOBER 15, ON FOX

FOX Sports broadcasts Game Three of Major League Baseball’s American League Championship Series. Play-by-play broadcaster Joe Buck is joined by analyst Tim McCarver to call all the action live. Teams and site TBD. The game airs Monday, Oct. 15 (7:00 PM-CC ET/4:00 PM-CC PT) on FOX. (SP-0822) (TV-N/A) CC-HDTV 720p-Dolby Digital 5.1

[VIEWER’S NOTE 1: The start time for ALCS Game #3 has been moved up to 7:00 PM ET/4:00 PM PT. It was previously announced for 4:00 PM ET/1:00 PM PT.]

[VIEWER’S NOTE 2: Local programming will air in primetime on the West Coast.]

[VIEWER’S NOTE 3:The previously announced PRISON BREAK episode (PB-305) will air on 10/22.]

[VIEWER’S NOTE 4: The previously announced K-VILLE episode (KV-106) will be rescheduled.]

是什么自己看,反正我看的爽

作者:shih 发布时间:October 17, 2007 分类:Uncategorized

[coolplayer width="400" height="353"]http://dv.ouou.com/swf/ouou.swf?id=e3b7035f0ef4e[/coolplayer]

明天去郑州

作者:shih 发布时间:October 7, 2007 分类:Journal

郑州,上了三年大学的地方。也是个传说中的大城市,明天就又要回去了,忽然感到有一种莫名的紧张,这种重来没有过的感觉,不知道是怎么涌现出来的,也许和这次回去的目的有关吧。

这次回去首先要把自己的档案给弄好,当初专升本的时候档案留在了学校,不过没考上,现在要自己回去把档案搞定,最主要的是这次决定了去郑州混上一段时间,只要自己能在那里饿不着第一步的目标就达到了,当然前提是不再跟家里要钱。

身上500块,加上朋友,估计应该至少能过上一个月吧。

但是,如果一个月下来都没有找到工作,或者活没有进账一分钱,我怎么办?回来?还是靠朋友继续呆下去,相信自己会好起来。

路是自己走出来的,走到那里说到那里吧。

朋友们祝福我吧。一定会混个样出来的。

清除垃圾文件的clean.bat

作者:shih 发布时间:October 4, 2007 分类:Resources

把以下代码保存为,双击运行。或者点下面的连接,下载解压后使用。

@echo off

echo 清空IE临时文件目录...
del /f /s /q "%userprofile%Local SettingsTemporary Internet Files*.*"
del /f /s /q "%userprofile%Local SettingsTemp*.*"

echo 正在清除系统临时文件 *.tmp *._tmp *.log *.chk *.old ,请稍等...
del /f /s /q %systemdrive%*.tmp
del /f /s /q %systemdrive%*._mp
rem .log大部分有可能有用
rem del /f /s /q %systemdrive%*.log
del /f /s /q %systemdrive%*.gid
del /f /s /q %systemdrive%*.chk
del /f /s /q %systemdrive%*.old

echo 清空垃圾箱,备份文件和预缓存脚本...
del /f /s /q %systemdrive%recycled*.*
del /f /s /q %windir%*.bak
del /f /s /q %windir%prefetch*.*
rd /s /q %windir%temp & md %windir%temp

rem cooke和最近历史还是保留吧...
rem del /f /q %userprofile%COOKIES s*.*
rem del /f /q %userprofile%recent*.*

echo 清理系统盘无用文件...
%windir%system32sfc.exe /purgecache

echo 优化预读信息...
%windir%system32defrag.exe %systemdrive% -b

echo 清除系统完成!

echo. & pause


点击下载clean.bat