Category Archives: productivity

Simplify my study on web

Inbox: instapaper Record: delicious Discover: Google reader, delicious, stumbupon Notetaking: emacs with org mode Reference: evernote Update: Use cintanote to replace evernote, because evernote is too heavyweight.

Posted in productivity | Tagged | View Comments

Knowledge manage or knowledge collect?

这个标题就是现在我个人的知识管理的现状。 虽然说我们有了很多更好的工具,但是现在的知识管理已经沦落为知识收集了。 Google reader?我每天都在上面浏览,share,star文章,甚至还发到evernote或者instapaper里面去,可是我从来没有好好看过收集下来的文章,更别说应用了。 Instapaper?我曾经最推荐的app,还花了4美元买了正版的,现在很少打开了… Evernote?里面inbox的文章已经堆成山了… 我所有的工具,现在都是收集箱,没有一个放着消化过的东西。 说到底,还是懒惰。勤奋的人,哪怕只用笔记本,只用文本文档,也能做笔记,懒惰的人,就像我,只会在一个又一个工具里跳来跳去,最后什么也没留下。甚至说,工具的选择越多,最后越没用。

Posted in productivity, self-management | View Comments

Weekplan, a creative and easy-to-use online TODO list

Weekplan is a new online TODO list. The author said it’s inspired by “Seven habits of highly effective people”, so I give it a try. I think it shows us a really creative way to organize our todos. It has … Continue reading

Posted in productivity, webutils | Tagged , , | View Comments

Commands on VIM marks

:marks – Display all the bookmarks ma – Creates a bookmark called a `a – Jump to the exact location of the bookmark a ‘a – Jump to the beginning of the line of the bookmark a `. – Jump … Continue reading

Posted in productivity, vim | Tagged | View Comments

The easiest way to add an article into evernote from google reader is to “Email” it

We can use a customized link to send an article from google reader to evernote, but it’s very slow. However, email it to the unique email address of you evernote, is easier and faster. Instapaper also come out with a … Continue reading

Posted in evernote, productivity, software, webutils | Tagged , , | View Comments

读了一遍evernote的user guide

有一点收获: 几个有用的快捷键: Win + a: 自动用选中的文字创建一个新note Ctrl + Alt + v: 自动用剪贴板内的文字创建一个新note Ctrl + Alt + N: 新建一个note 默认情况下,evernote会把“print”键注册为截图并用截图创建一个新的note。快捷键可以修改。如果不想用快捷键,可以在evernote的system tray里右键。

Posted in evernote, productivity, software | Tagged , | View Comments

How to run a powershell script from console

首先,要确保running policy已经被修改了。默认的Restricted是不能运行的。 然后,如果script file不在path下面,需要指定全路径。 如果全路径中间有空格,需要加双引号,然后在最前面加&。例子如下: 1: & "c:\My Scripts\test.ps1" 详情请参考http://technet.microsoft.com/en-us/library/ee176949.aspx 补充: 以上的是在powershell的console下运行。如果要在普通的console下,或者在bat文件里面运行,需要用下面的命令: 1: powershell.exe c:\test.ps1 如果要看到输出,在powershell.exe后面加上-noexit。在上面那个链接里面说,如果路径有空格,可以用命令:powershell.exe &’c:\My Scripts\test.ps1’来运行,但是我在1.0里面没有成功。不知道2.0是不是可以。本来准备把powershell的脚本也放到dropbox里面,然后又可以用lanuchy来运行,目前还是没做到。

Posted in powershell, productivity, software | Tagged | View Comments