I've been using David Allen's "Getting Things Done" methodology for about three years now and I find it works really well.
When dealing with mail the principle I follow is to use the inbox purely as an inbox and not a substitute "to-do" list.
What that means is I process each message, one at a time, starting from the oldest. I don't skip ahead to "interesting" mails. If the mail can be handled in under two minutes, I just do it. If not, I create a related task (in EMacs org-mode (which is utterly fantastic but any old text file with categories can be used)) and handle that outside the mailing system.
The mail itself gets filed into a specific category archive folder for reference. My inbox is almost always empty which is a GREAT feeling for some reason.
EDIT: Thanks for the link to sup btw. I use mutt but the 'search' feature seems tempting.
Great! I love Opera, use it exclusively, and I wish it got a bigger market share.
Some things to love about Opera:
* Superb keyboard support including reaching any link on the page quickly
* Dragonfly
* Home/Office Sync
* Disable Images on a page immediately Shift+I
* Incremental vim-like find with "."
* List out all links on the given page (very useful for some threads)
This version looks really good. Private browsing at last! I can finally plan my vacations in private.
(defun fullscreen ()
(interactive)
(let (f w l r cb b)
(setq cb (current-buffer))
(setq b (switch-to-buffer "*NOSUCHBUFFER*")) ;Temp buffer otherwise
(setq f (make-frame '((fullscreen . fullboth)))) ;settings don't take effect
(select-frame-set-input-focus f)
(setq w (frame-width f))
(setq l (/ (- w 80) 2))
(setq r (- w (+ l 80)))
(seq-default left-margin-width l
right-margin-width r)
(delete-other-frames f) ;Only one main window
(kill-buffer b) ;Kill temp buffer - now original buffer will get new margins
(switch-to-buffer cb)))
(defun fullscreen-off ()
(interactive)
(let (f cb b p)
(setq cb (current-buffer))
(setq b (switch-to-buffer "*NOSUCHBUFFER*")) ;Temp buffer
(setq-default left-margin-width nil
right-margin-width nil)
(kill-buffer b)
(delete-other-frames (make-frame))
(switch-to-buffer cb)))
There is actually a very simple solution that a bank could use to mitigate this issue - just send a SMS everytime there is an ATM withdrawal.
I believe the bank I've just moved to (http://www.kotak.com/) does do this. It sends me an SMS for every transaction done so far (I haven't used the ATM yet).
Understanding this level of communication becomes simpler if you understand the dynamics at play in office relationships.
Listen to gossip, try to understand the way your boss feels about his boss. About his peers. About his portfolio. And look for leverage.
<PostureTalk>I find it exhausting and truly boring so I don't do it. But maybe that's because my personality doesn't enjoy power plays and I want a happy life over a rich/powerful one.</PostureTalk>
IMHO as a learning language nothing beats LISP. It's a little tricky in the beginning, but the pay-off is great simply in the way it changes your perception of programming.
That's what I've been working off of for the past week or so. It's been really fun, I think I was just wondering if it's everything people say about it.
Thanks for the input. I wouldn't mind continuing with CL. Many people I've talked to said they find it incredibly useful for small projects that they need to throw together in a short time.
I love the way that Lisp lends itself to incremental testing. You can discover most bugs just by testing functions at the REPL. If you plan to continue with Lisp (hooray!) then I would recommend becoming familiar with SLIME if you're not already.
When dealing with mail the principle I follow is to use the inbox purely as an inbox and not a substitute "to-do" list.
What that means is I process each message, one at a time, starting from the oldest. I don't skip ahead to "interesting" mails. If the mail can be handled in under two minutes, I just do it. If not, I create a related task (in EMacs org-mode (which is utterly fantastic but any old text file with categories can be used)) and handle that outside the mailing system.
The mail itself gets filed into a specific category archive folder for reference. My inbox is almost always empty which is a GREAT feeling for some reason.
EDIT: Thanks for the link to sup btw. I use mutt but the 'search' feature seems tempting.