Saturday, July 21, 2007

volatile


一个美妙的社会不正是这样运转的吗,没有人拥有绝对权力,政治权力、商业力量与新闻舆论彼此制衡,相互令对方不安,如果一切难以制裁,那么最高法院是一个
值得信赖的仲裁者。我喜欢埃德蒙·柏克那个著名的观点:自由是什么,它是不同的社会力量彼此制衡时,下面留出的那片空间。

Thursday, July 12, 2007

Post & Get

Well, on the php page that processes the form, you have one of two options.

If you're using method='get' for your form.. your variable is going to be in $HTTP_GET_VARS[formObjectName];

or if you're using method='post', your variable is going to be in $HTTP_POST_VARS[formObjectName];.

If your server is using newer versions of PHP, $_POST[formObjectName] and $_GET[formObjectName] are the shorthands for the ones above.

formObjectName is the the value of the name attribute on the form... like using method='post' can be accessed using $_POST[userName].

Wednesday, July 4, 2007

30秒为你的电脑系统清除垃圾

下面是步骤很简单就两步!


 在桌面上点鼠标右键,选择新建一个“记事本”,把下面的字复制进去,点“另存为”,把文件名定为“清除系统LJ.bat”就完成,记住后缀名一定要是.bat,好ok了!你的垃圾清除器就这样制作成功了!双击它就能很快地清理垃圾文件,大约一分钟不到。


QUOTE
@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
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
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系统LJ完成!
echo. & pause


以后只要双击运行该文件,当屏幕提示“清除系统LJ完成!就还你一个“苗条”的系统了!!到时候再看看你的电脑,是不是急速如飞呢?