zz: Sogou开始搜人?违反隐私、违法行为。

zz from: http://blog.donews.com/walaqi/archive/2006/08/01/984226.aspx

今天一个朋友给我发来的链接让我感到惊恐,sogou.com这个网站居然开始搜人了。sohu利用他掌控下的chinaren校友社区,获得了很多人的真实资料。现在他把这些真实资料拿来成了sogou的搜人。这个东西太可怕了,任何人,不管处于什么目的,只要对你有稍微的了解,就可以从这些资料里面准确的找到你的其他相关信息。

我参考了chinaren网站下面的保护隐私权的链接,第二条第二小节如下:

请了解,在未经您同意及确认之前,本网站不会将您为参加本网站之特定活动所提供的资料利用于其它目的。惟按下列第6条规定应政府及法律要求披露时不在此限

我是从来没有同意过要加入搜人这些服务的,找遍了chinaren里面的设置,也没有找到相应的“我同意”加入sogou搜人服务这个设置项。

抱怨完,就得赶紧抢救自己的个人隐私吧,跑到chinaren,登录,修改个人资料。发现我当初真是勤勉,不仅名字,还有供职公司、收入、电子邮件、qq、msn、手机号码全部填写在那里。联想到以前有人电话促销,打到我的手机上,怪不得对我那么了解呢。

全删,然后建议同学们搬家。

  • Share/Bookmark

links: 关注一下Perl & Python、圆角矩形

作者:半瓶墨水 链接:http://www.2maomao.com/blog/links-for-2006-08-03/
  • Share/Bookmark

links: MFC解压rar源码、抓虾每日精品

作者:半瓶墨水 链接:http://www.2maomao.com/blog/links-for-2006-08-02/
  • Share/Bookmark

Perl马尔科夫算法的小小改进

作者:半瓶墨水 链接:http://www.2maomao.com/blog/perl-markov-improvement/

本科的时候看过一本书《程序设计实践》,当时不是很懂马尔科夫算法是怎么一回事,被名词吓晕菜了。

近来又翻出这本书,把里面的Perl脚本实现的Markov程序敲进去,贴段圣经看了一下,发现结果很短且没有回车,稍微改进了一下程序:

#markov.pl: markov chain algorithm for 2-word prefixes
$MAXGEN = 10000;
$NONWORD = "\t";
$LINEFEED = "\n";
$w1 = $w2 = $NONWORD;               # initial state
while (<>) {                        # read each line of input
    
foreach (split) {
        
push(@{$statetab{$w1}{$w2}}, $_);
        
($w1, $w2) = ($w2, $_);     # mutiple assignment
    
}
    
push (@{$statetab{$w1}{$w2}}, $LINEFEED);
    
($w1, $w2) = ($w2, $LINEFEED)# mutiple assignment
}
push (@{$statetab{$w1}{$w2}}, $NONWORD);    # add tail
 
$w1 = $w2 = $NONWORD;
for ($i = 0; $i < $MAXGEN; $i++) {
    
$suf = $statetab{$w1}{$w2};     # array reference
    
$r = int(rand @$suf);           # @$suf is number of elems
    
exit if (($t = $suf->[$r]) eq $NONWORD);
    
print "$t ";
    
($w1, $w2) = ($w2, $t);         #advance chain
}

下面是一段由圣经Kings1(列王记上)部分做源输入生成的结果:

The young lady was very fair; and she is to the king. <---(兔毛猫评论:这句比较搞笑:)
And Zadok the priest, and Nathan the prophet also came in.
While you are still speaking with the king, Nathan the prophet;' and he also of a very goodly man; and he shall reign after me, and he aros
e, and went, and caught hold of the kingdom.
And the king into the chamber: and the Pel'ethites; and they have caused him to be king after him;
And Zadok the priest, and Nathan the prophet;' and he shall sit upon my throne; for he shall sit on my seat in my stead: and I have appoint
ed him to Gihon.
So they sought for my lord king David, saying, God make the name of Solomon better than thy name, and his servants said unto them, Take wit
h you the trumpet, he said, "What do you behave as you do?" He was also a very comely man; and bore him after Absalom.
and he shall die.
And it was told Solomon saying, Behold, Adonijah feareth because of Solomon, and arose and went away, every man his way.
And Jonathan, answering, said to him, Go to thy handmaid saying, Solomon thy son shall reign after me, and he invited all the king's mule;

注意运行perl markov.pl的时候,输入的内容以Ctrl+Z然后回车做结束,不是空行。

  • Share/Bookmark

links: 从常识开始、“中央一套”

作者:半瓶墨水 链接:http://www.2maomao.com/blog/links-for-2006-08-01/
  • Share/Bookmark