最新爆出的三鹿公关案,并不是我所知道的第一起,但是,却是最没有良心的一起。
百度以他在行业的优势,垄断了国民的知情权,只要他愿意,或者,有人出得起钱
那么,百度可以控制你能看到什么,你不能看到什么
对这样一家失去了良心和道德的公司,是不需要任何人尊敬他的
虽然我的小小力量并不能动摇百度的大厦
但是,我可以珍爱生命,远离百度。
Keep smiling and never give up,even when things get you down
最新爆出的三鹿公关案,并不是我所知道的第一起,但是,却是最没有良心的一起。
百度以他在行业的优势,垄断了国民的知情权,只要他愿意,或者,有人出得起钱
那么,百度可以控制你能看到什么,你不能看到什么
对这样一家失去了良心和道德的公司,是不需要任何人尊敬他的
虽然我的小小力量并不能动摇百度的大厦
但是,我可以珍爱生命,远离百度。
扔掉的都是windows的破书,现在再来看看,这些书真是垃圾,浪费读书时间
称了一下,这堆书20斤,价值数百元……
更新:如果谁对这些书有兴趣的话,就过来拿吧,免费。

百度已经不是信息整理的工具,而已经沦为打击对手的武器
百度的索引加入了太多的人为因素,搜索的结果已经丧失公正公平
各大网站屏蔽百度,与其说是一次宣传,不如说是一次积压已久的郁气的爆发
百度就像《功夫熊猫》里的太郎,自私,极度的自私
这世界,没了百度,会怎么样呢?
我实在看不出来有什么不同。
话说今日有人加我MSN,加了以后,事情就好玩了
Hi
hey, Age/Sex/Location?
hey whats up babe, U got a webcam? finally someone adds me, I am soo fuckin horny today for some reason lol
I can show u how to watch if u promise not to tell anyone else how to do it???PLEASE
well since its the law that u gotta be 18 (nudity involved), u have to sign up with a credit card(这是重点) for age verification! BUT.. Once you are inside, just clikc on “Webcams” let me know what name you use to sign in with so I know it is you babe! http://…………………(网址马赛克掉) fill out the bottom of the page then fill out the next page as well and u can see me live!
Please dont mention anything about that in the chatroom once u get in ok?
OH SHIT.. k I am late to start my show, I gotta get off msn…I will see ya inside my chatroom babe.. remember not to mention that I am upgrading u… You can use your msn name to sign in so i know it is you..
AUTO-RESPONSE: hey just in the middle of my webcam show if you want to watch click the link http://…………………
检查了一下,目前百度的索引里有淘宝相关网页约22,700,000篇;
看看一个月以后还会有多少
不过,我倒是觉得,淘宝敢封,百度未必敢删
百度也就是欺软怕硬的主,平时欺负小网站而已
再说了,百度的爬虫什么时候遵从过robots协议了
js传递中文时会使用escape进行编码,所以,接收到值以后要decode一下就能还原出中文了
function js_unescape($str)
{
$ret = ”;
$len = strlen($str);
for ($i = 0; $i < $len; $i++)
{
if ($str[$i] == ‘%’ && $str[$i+1] == ‘u’){
$val = hexdec(substr($str, $i+2, 4));
if ($val < 0x7f) $ret .= chr($val);
else if($val < 0×800) $ret .= chr(0xc0|($val>>6)).chr(0×80|($val&0x3f));
else $ret .= chr(0xe0|($val>>12)).chr(0×80|(($val>>6)&0x3f)).chr(0×80|($val&0x3f));
$i += 5;
}
else if ($str[$i] == ‘%’)
{
$ret .= urldecode(substr($str, $i, 3));
$i += 2;
}
else $ret .= $str[$i];
}
return $ret;
}