在ThinkPad T400安装XP全攻略
不会使用Windows Vista,安装XP!这过程充满了挑战!
Read more…
Thunderbird是非常优秀的邮件客户端软件。默认情况下,Thunderbird会把邮件存储在C:\Documents and Settings\[username]\Application Data\Thunderbird\Profiles\xxxxxxxx.default。而我希望把邮件存储在其他分区而不是在C盘,这样恢复系统时邮件还能保留
Read more…
【一框多用】 网络搜索、网络历史记录、地址栏、输入时提供建议都在一个框里
【新标签页】新标签页会显示你最常访问的网站、最近加入书签的页面以及最近关闭的标签页等等。
【应用程序快捷方式】无需打开浏览器即可启用网络应用程序。应用程序快捷方式可以直接加载您常用的在线应用程序。不过还没用过。
【动态标签页】这个功能还是很Cool的,随时可将标签页拖出浏览器,也可以将多个标签页放入一个窗口中。
【崩溃控制】各个标签页都在浏览器中独立运行,因此,即使某一个应用程序崩溃,也不会影响到其他任何进程。
【隐身模式】如果你要去少儿不宜的网站,最好隐身。Google考虑的挺周到的
【安全浏览】如果你访问的网站被存在不安全因素,Chrome会向发出警告的。
【即时书签】要把正在浏览的网页添加为书签,那太easy了,只需点击地址栏左侧的星号图标。
【导入设置】当您切换至 谷歌浏览器时,您可以沿用现有浏览器中的所有书签和密码,非常方便!
【下载更为简单】不会弹出下载管理器;您可以在当前窗口底部查看下载状态。
2008年9月3日,Google发布了浏览器Chrome,Chrome的意思是”铝合金”。
【安装】
在Google浏览器的网站上没有找到传统的下载链接,需要下载一个小软件,然后再通过这个小软件去下载Chrome。我很不喜欢这种方式,直接给出个链接多好啊!
目前的版本是0.2.149.27,你可以点击下面的链接直接下载。
http://cache.pack.google.com/chrome/install/149.27/chrome_installer.exe
【风格】
正如Google的一贯风格,Chrome非常简洁淡雅,甚至竟然连菜单都没有。顶部是标签页,下面是输入网址的地方,底部在需要的时候会显示状态,有限的几个按钮就能完成大部分操作。
【显示效果】
IE的显示效果是最好的,Chrome和IE应该说是一样好,比Firefox要强很多。访问小部分网站时,还是有些问题。比如招行的主页 www.cmbchina.com
【速度】
和IE不相上下
【帮助】
你只能去Google浏览器网站,通过视频会介绍Chrome的新特色功能,不过你的带宽足够。
【评价】
Chrome并没有充分利用Google的特色,没有和Gmail、Google Reader等集成起来,毕竟版本才0.2
Google浏览器官方站点:http://www.google.com/chrome
Google浏览器Chrome十大特色 http://tech.thinkedge.cn/?p=53
VNC是OpenSource的软件,它可以将目标机器上的整个桌面以图形方式发送到访问端,同时将访问端的鼠标,键盘等命令发送过去,最终你就可以在它提供的窗口中,像操作本地电脑一样操作其它电脑了。这个工具是跨平台的,我常用的是在Windows下访问Linux系统。
tar -xvzf vnc-4_1_2-x86_linux.tar.gz
mv vnc-4_1_2-x86_linux vnc
cd vnc
./vncserver
type password
Create default startup script /home/eric/.vnc/xstartup
为了能够在Windows上清晰的显示Linux窗口,还需要修改.vnc/xstartup
file content of .vnc/xstartup for RHEL3: (just one line)
exec /etc/X11/xinit/xinitrc
file content of .vnc/xstartup for RHEL4: (just one line)
gnome-session &
Seven steps:
1. Download Emacs
2. Uncompress it to, for example, D:\emacs-22.1
3. create a site-lisp directory (may exist already)
4. Copy the verilog-mode.el to the file $EMACS\site-lisp\verilog-mode.el
5. Set up the HOME environment variable for Emacs. $HOME D:\emacs-22.1
6. Create a file called D:\emacs-22.1\.emacs.el, using emacs, or note pad, whatever
7. Optionally run D:\emacs-22.1\bin\addpm.exe - this adds Emacs to the start menu and Desktop
——————————————————————————–
What is happening?
The first two steps install an emacs on your machine.
The third step adds a directory where you can install third party lisp routines (like verilog-mode). It is a really good idea to add your own customization lisp files for emacs into such a directory, rather than just copying them to one of the standard places, is so that later if you install a new version of emacs, you don’t overwrite goodies that you have collected over the years.
In the fourth step you actually install the verilog-mode file in this site lisp directory.
In the fifth step you arrange it so upon startup, emacs will know where everything is.
In the sixth step you tell emacs that you want verilog files to come up in verilog mode.
The optional seventh step builds a quick launch icon that you can click on to launch the emacs. You can place this on your desktop, or in the quick launch bar, or in your My Documents so that emacs is easy to launch.
——————————————————————————–
.emacs.el content
;; Load verilog mode only when needed
(autoload ‘verilog-mode “verilog-mode” “Verilog mode” t )
;; Any files that end in .v should be in verilog mode
(setq auto-mode-alist (cons ‘(”\\.v\\’” . verilog-mode) auto-mode-alist))
;; Any files in verilog mode should have their keywords colorized
(add-hook ‘verilog-mode-hook ‘(lambda () (font-lock-mode 1)))