Today I read a good article about time management. I’ve read plentty time management books but this one remind me one thing I’ve forgot: The power of focus.
For Chinese readers, there is a translation here
Share This
Today I read a good article about time management. I’ve read plentty time management books but this one remind me one thing I’ve forgot: The power of focus.
For Chinese readers, there is a translation here
Share This
Well In my last blog about dired, I customized
dired-guess-shell-alist-user is a variable defined in `dired-x.el’.
Documentation:
User-defined alist of rules for suggested commands.
These rules take precedence over the predefined rules in the variable
`dired-guess-shell-alist-default’ (to which they are prepended).
Each element of this list looks like
(REGEXP COMMAND…)
where each COMMAND can either be a string or a Lisp expression that […]
There are lots of complains on the net about “memory leak” for Firefox 1.5+, and all solutions now point at setting browser.sessionhistory.max_total_viewers in about:config.
This pref defines how many pages is cached per tab. As I don’t use the browser back and forth feature very much, I set it to 0 to disable it. Note this […]
While Emacs being a platform of everything, needless to see it can do file management well. Among them dired is the standard package.
Here are some useful settings
(require ‘dired)
;; Setup dired to let you nicely copy stuff inbetween two dired
;; windows.
(setq dired-dwim-target t)
;; delete un-empty directories recursivly without warning
(setq dired-recursive-deletes ‘always)
;; recursive copy without prompt
(setq dired-recursive-copies […]