星期四, 十月 25, 2012

让 Chrome 默认使用 google.com 搜索

没有评论

退出Chrome浏览器

⌘+Q

修改Preferences文件

屏幕快照 2012 10 25 下午4 45 06

文件路径:

  1. OS X用户:~\Library\Application Support\Google\Chrome\Default\Preferences
  2. Windows 7用户:%LOCALAPPDATA%\Google\Chrome\User Data\Default\Preferences

找到以下两行:

"last_known_google_url": "https://www.google.com.hk/",
"last_prompted_google_url": "https://www.google.com.hk/",

将它们改为:

"last_known_google_url": "https://www.google.com/",
"last_prompted_google_url": "https://www.google.com/",

保存

登入 www.google.com/ncr

如果Chrome问你是继续使用google.com,还是切换到你的本地域名,当然选择前者。

未标题 1 2

Android翻墙教程(基于GoAgent,需root)

没有评论

安装SmartHosts

NewImage

推荐 https://play.google.com/store/apps/details?id=mobi.smarthosts

或者 https://code.google.com/p/smarthosts/

20121025103746 3 20121025103746 4

安装GAE代理

NewImage

推荐 https://play.google.com/store/apps/details?id=org.gaeproxy

或者 https://code.google.com/p/gappproxy/

未标题 1

安装Set DNS

NewImage

https://play.google.com/store/apps/details?id=uk.co.mytechie.setDNS

20121025103746 5

星期一, 十月 22, 2012

星期一, 十月 08, 2012

解决 Windows 、Mac 和 Ubuntu 时间不一致的问题

没有评论

相关概念

Universal Time Coordinated (协调世界时)

Greenwich Mean Time (格林尼治平时)

问题原因

Windows 与 Mac/Linux 缺省看待系统硬件时间的方式是不一样的:

  1. Windows把系统硬件时间当作本地时间(local time),即操作系统中显示的时间跟BIOS中显示的时间是一样的。
  2. Linux/Unix/Mac把硬件时间当作UTC,操作系统中显示的时间是硬件时间经过换算得来的,比如说北京时间是GMT+8,则系统中显示时间是硬件时间+8。

解决方法:

让 Windows 把硬件时间当作 UTC

开始->运行->CMD,打开命令行程序,在命令行中输入下面命令并回车

Reg add HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation /v RealTimeIsUniversal /t REG_DWORD /d 1