Similarities between both the ROMs
Both are based on the latest version of Android
The ability to customize Quick Settings
T9 Dialer with Call Statistics
Stock AOSP browser
Stock Messaging App with expandable notifications
LED Notification Control (Like Light Flow)
Read more ...
Bash 使用过程中一些非常小的技巧,记录一下。
使用 less 代替 tailf
在习惯了 less +F /var/log/syslog 之后可以完全抛弃 tailf .
Alt + . 上一个命令的参数
按下 Alt + . 会在命令行中插入上一个命令的参数,非常适合参数比较复杂时直接插入参数。
Ctrl x Ctrl e
当你发现在命令行中输入太多内容了,那么尝试一下 Ctrl + x + Ctrl + e ,Bash 会打开 $EDITOR 然后编辑你的命令,一旦输入保存退出,那么 Bash 会立即执行该命令。
Read more ...
Google 每年愚人节都会弄一系列的愚人游戏,去年整理的在这里,http://www.einverne.tk/2012/04/2012-april-fool-day-google.html
##Google Nose Google 灵鼻子
Google Nose 是一款能够告诉你气味的产品,在 Google 搜索中搜索关键词,在右边就会显示出闻一闻
搜索中新增气味查询功能
气味扑鼻:在打字、说话和触摸的基础上,新增一种感官体验。
您的互联网侍酒师:专家精心设计的知识面板,配有图片、说明和气味介绍。
左闻右嗅:Google 百味库由超过
Read more ...
在执行 Linux 命令时,我们可以把输出重定向到文件中,比如 ls > a.txt,这时我们就不能看到输出了,如果我们既想把输出保存到文件中,又想在屏幕上看到输出内容,就可以使用 tee 命令了。tee 命令读取标准输入,把这些内容同时输出到标准输出和(多个)文件中(read from standard input and write to standard output and files. Copy standard input to each FILE, and also to standard output. If a FILE is -
Read more ...
This Jekyll introduction will outline specifically what Jekyll is and why you would want to use it.
Directly following the intro we’ll learn exactly how Jekyll does what it does.
Overview
What is Jekyll?
Jekyll is a parsing engine bundled as a ruby gem used to build static we
Read more ...