Hacker News new | ask | show | jobs
by ridicter 4684 days ago
This exactly the same for me. Just out of muscle memory, my reptilian brain starts typing Reddit or Hacker News into the URL field in my browser when I'm not paying attention. If I start my day wandering down the hacker news/reddit rabbit hole, I never really get out.

So when I wake up in the morning, literally before I do anything else on my computer, I turn on Self Control (http://visitsteve.com/made/selfcontrol/), which blocks sites that kill my productivity.

I've recently adopted org-mode for emacs, and it has helped immensely. Task #1 everyday: Turn on Self Control for a few hours. The last task everyday: Close all windows and make sure org-mode is greeting me when I wake up with Task #1 for the day.

1 comments

We really are the same. I keep a journal in org-mode and in my .emacs I have cron-like periodic function that switches to my journal in the middle of the night so that it's the first thing I see when I unlock my computer in the morning. Something like:

  (run-at-time "23:59" 86400 (lambda ()
                              switch-to-buffer "journal.org")))
That's an awesome idea. Anything that pares down the number of decisions I have to make to jumpstart my day...

I only picked up emacs about a month ago, investing heavily in customizing it. It has seriously helped so much with my focus since it takes out all the distractions/opportunities for context switching.

I'm trying to learn the vim version so I can try and put my life together.

But that is so amazingly cool. I bet I could do that in vim as well.