Google会退出中国?

Saturday, January 16th, 2010

本周最大的新闻就是关于Google声明退出中国。 消息如下:  谷歌在其官方博客上宣布,考虑关闭中国运营及网站Google.cn 退出中国市场,google退出中国声明引网友原因大猜测,下面小编将翻译、解读Google退出中国声明原文:A new approach to ChinaLike many other well-known organizations, we face cyber attacks of varying degrees on a regular basis. In mid-December, we detected a highly sophisticated and targeted attack on our corporate infrastructure originating from China that resulted in the theft of intellectual property from Google. However, it soon became clear [...]

awesomium

Wednesday, September 23rd, 2009

Awesomium is a library that helps facilitate the rendering of Web Content in an off-screen context using Google Chromium’s port of WebKit 这是一个利用google浏览器进行网页渲染的开发库。看起来很不错,可以用它来作一个3D 的网页浏览器,那会是什么样子呢?

Googe站点搜索乱码的解决方案

Friday, September 18th, 2009

我在本博克中使用了google sitesearch搜索框,但是搜索中文的时候却出现了乱码。 经过一番研究,只需要修改搜索表单代码如下即可。 注意encoding方式选择utf-8 input name=”ie” type=”hidden” value=”utf-8″ input name=”oe” type=”hidden” value=”utf-8″

Google lively

Wednesday, August 6th, 2008

据TechCrunch报道,Google今天发布了一个类似Second Life的新服务,名叫Lively,是一个基于浏览器的三维虚拟世界,可以让用户创建和定制个性化造型和世界,并与其他用户进行互动,这个丰富而有趣的社会化互动比GTalk要好。   虚拟世界是嵌入在浏览器中,Windows用户使用IE或Firefox即可查看、下载并安装,Mac和Linux用户还要多等待一段时间。

Firefox 3.0 Beta 5 打开Google Reader的问题

Saturday, April 5th, 2008

最近用自己编译的Firefox 3.0 Beta 5打开我的Google Reader, 发现Google Reader的内容完全显示不出来,只有顶上的导航条显示。如果打开iGoogle呢,Google Reader的订阅是可以显示在iGoogle里面的。 经过一番搜索,关键字是“firefox 3 beta google reader”,我在这篇Post里面找到了解决方案:

MapReduce编程模型

Sunday, March 16th, 2008

现在是计算的时代,单机往往不能满足大型计算的需要 ,这时候有两种办法:一个是使用大型计算机,一个是使用大量的廉价PC做集群计算。Google使用的就是后者。 那么如何使普通的程序员也能写出鲁棒好用的并行计算程序呢?这就需要定义一个编程模型。Google发表了它的MapReduce编程模型可供参考。