Found in 15 comments on Hacker News
quaunaut · 2022-11-14 · Original thread
I'm a software engineer, but these have been instrumental in my success in a way no coding book can compare to(though John Ousterhout's "A Philosophy of Software Design" would have, if it came out earlier in my life).

Personal time/task management- The classic, Getting Things Done(https://www.amazon.com/Getting-Things-Done-Stress-Free-Produ...). The power this has on people cannot be understated. Turns out that most of how life is conducted is rife with forgetfulness, decision paralysis, prioritization mistakes, and massive motivation issues. This book gives you specific workflows to cut through these in a magical way.

Personal Knowledge Management- The equally classic, How to Take Smart Notes(https://www.amazon.com/How-Take-Smart-Notes-Technique/dp/398...). Where GTD(above) does this for well-defined tasks/work, this book does it for open-ended work, giving you an amazing workflow for introducing "Thinking by Writing", which is frankly a superpower. This lets you see things your friends/colleagues simply won't, lets you deconstruct your feelings better, learn new/deeper subjects faster, and connect thoughts in a way to produce real insight.

For Product/Business Management, Gojko Adzic's "Impact Mapping"(https://www.amazon.com/Impact-Mapping-software-products-proj...) feels like it could make nearly every software team/business 10x better by just reading this book. I've personally watched as enormous portions of my life were spent on things that barely moved the needle for companies, or merely didn't keep the metric from rising. So many projects taken on faith that if you work on X, X will improve, without ever measuring, or asking if you could have accomplished that with less. The world looks insane afterward.

thisiszilff · 2020-12-07 · Original thread
What works for me is a few things:

(1) Separate work from life, be able to walk away for a bit when work isn't going well. And do walk away if things aren't going well. If you haven't been able to write any code for the past few hours, odds are you won't be able to write any in the next few hours.

(2) Focus on process over results. IE have a good process to minimize the amount of time you spend thinking about what you should be doing, whether you did the right thing, etc. What honestly helps in these cases is just having a task list of "I need to get XYZ done today" and then blasting through it without leaving room for thinking about things too much. I like Getting Things Done (ie https://www.amazon.com/Getting-Things-Done-Stress-Free-Produ...) because it helps separate work from life.

(3) Take the long view of your life/career. The truth is that you are going to make mistakes, bugs will get into prod, you're going to get burned out, etc, so you need to accept that you will have "bad" days (or days, weeks, moths where you just don't care about what you're doing in which case it is obviously going to be crap) and focus on the process for improving them to minimize them over the long run. I think the important question here isn't "did I make mistakes" but rather "is my process resulting in a slower rate of mistakes/less severe mistakes.

(4) Never forget to eat, sleep, drink water, and exercise. Especially sleep. when things are bad we tend to sacrifice sleep, that almost always makes it worse.

Most of it I think is summarized as having a process you can trust so that when things do go poorly you can focus on the process in those moments. The process will get you out.

I just finished Getting Things Done by David Allen https://amzn.to/2YQvRHT. He does a good job of explaining how to organize your to do list.

I use Things 3 for my check list. I use Streaks for habits. I use Bear for writing. I use Pocket for read it later.

jlarocco · 2019-01-14 · Original thread
> What do you do to keep yourself motivated? Especially when you hit something you hate to work on but is necessary.

A while back I read "Getting Things Done: The Art of Stress Free Productivity" [1], and though I'm not completely sold on his methodology, the author has a few ideas and techniques I really liked, that have helped me get motivated.

One of them is to figure out the next concrete, actionable task that needs to be done to make progress, and do that. Don't think about a million edge cases, or a big rewrite, but instead focus on the single edge case that's blocking you right now, or the first thing you need to do to start a rewrite, and then go do that smaller, specific thing.

It will feel good to have it done, and it'll motivate you to get to work on the next small step.

https://www.amazon.com/Getting-Things-Done-Stress-Free-Produ...

b_b · 2019-01-12 · Original thread
I would recommend for you to read and implement the organization/productivity system from Getting Things Done by David Allen [0]. It discusses essentially your main problems of dividing up your life into projects and timing yourself. The system also includes sections for putting some of your ideas in an 'Incubate', basically putting it off for another day once you get through what you have. Having a running list of all your commitments and projects like the system does I think will help you to analyze your time usage and realistic expectations for your productivity and stuff you want to engage in.

[0] = https://www.amazon.com/Getting-Things-Done-Stress-Free-Produ...

Jtsummers · 2016-12-14 · Original thread
Mythical Man-Month, Fred Brooks [0]. Very informative series of essays on his experiences and lessons learned with IBM. If nothing else, helps to properly frame my expectations on projects with respect to resources needed to properly coordinate with others, and the pros and cons of adding people to projects at different stages (and in different roles).

Getting Things Done, David Allen [1]. Useful toolkit for getting things out of my head and onto paper (or org-mode or OmniFocus) so that I can properly focus and prioritize my time on the things I need to get done.

Communicating Sequential Processes, C.A.R. Hoare [2]. Strongly influenced the way I think about programs in general, but specifically in the embedded field where I work. (NB: I've not actually read or worked through the full text, but mainly taken what was needed to properly communicate ideas in my designs or to analyze designs and systems others have produced. This is a task for myself for early next year.)

Moonwalking with Einstein, Joshua Foer [3]. I've always had a good memory, I actually picked this up to give to a girlfriend who had a terrible memory and read it in a couple days before giving it to her (she was out of town when it arrived). Helped to explain methods that I'd somehow developed over the years, and gave me concepts and a better understanding of other methods of memory acquisition (for either short or long term purposes). If you really want to improve your memory, there are probably better resources to learn specific techniques, but this was an informative and entertaining overview. WRT work, we have to keep large systems in our minds all the time, and potentially dozens of different systems written in different languages. Memory is critical for this, even if it's just the memory of where to find the information and not the information itself.

Fluent Forever, Gabriel Wyner [4]. This one is my current read. Goes back to Moonwalking with Einstein. While the book is itself about language acquisition, it's actually given me quite a bit to think about with respect to general learning and memory acquisition (in this case, specifically for long term retention and recall). We have a couple training programs (we need more) for our new hires on development and testing. There are some concepts in here and in related readings that I think would greatly improve how we teach these folks what they need to know and in a way that would improve their retention of that information. We have a lot of people retiring in the next 1-3 years, so this is actually quite critical right now, though management is quite lackadaisical about it.

[0] https://www.amazon.com/Mythical-Man-Month-Software-Engineeri...

[1] https://www.amazon.com/Getting-Things-Done-Stress-Free-Produ...

[2] http://usingcsp.com/cspbook.pdf

[3] https://www.amazon.com/Moonwalking-Einstein-Science-Remember...

[4] https://www.amazon.com/Fluent-Forever-Learn-Language-Forget/...

=========================================

EDITS:

The Toyota Way, Jeffrey Liker [5]. I grokked Lean from this. Hardware focused, but the concepts can be (and have been) generalized to other process focused fields. This has helped with understanding what business processes really need to be codified, what feedback mechanisms need to be present for improvement, the criticality of bottom-up feedback and improvement (employee investment in the company/product cannot be overvalued if you want quality and good craftsmanship).

The Little Schemer, Friedman & Felleisen [6]. Going back to the comments on Fluent Forever. The structure of this is fantastic for conveying and helping students retain information. The Socratic method is very useful, and structuring courses and introductory material in this format is useful, this happened to be my introduction to it (well, I'd heard it before, but my first time really encountering it in practice). It's a useful tool for solo-study of a topic (pose your own questions and construct answers), and as a method of guiding someone to a conclusion or better understanding. Also useful in debugging software or decoding software you didn't write, after a fashion.

[5] https://www.amazon.com/Toyota-Way-Management-Principles-Manu...

[6] https://mitpress.mit.edu/books/little-schemer

jonshariat · 2016-10-26 · Original thread
GTF(Getting Things Done) method with OmniFocus

Boagworld has a great video on his setup and how it all works: https://boagworld.com/working-in-web/omnifocus-2/

Getting things done book: https://www.amazon.com/Getting-Things-Done-Stress-Free-Produ...

OmniFocus: https://www.omnigroup.com/omnifocus

BeetleB · 2016-10-25 · Original thread
Over the years I've tried many planning methods, with very low success.

I tried GTD (https://www.amazon.com/Getting-Things-Done-Stress-Free-Produ...) for 7 years before declaring it a failure. It does have some good ideas that I still use, but the TODO management didn't work for me. I think it'll work only for people who have fewer goals than I do. It doesn't handle large lists very well.

Some things I kept from it:

1. Filing cabinet - Instantly useful from day 1.

2. Calendars are only for hard deadlines. Don't put stuff in there that you merely want to do. I know this is the opposite of the submission here. For me, planning everything in the calendar, including things I could ignore, led to a mess. Keep it for things you really cannot ignore.

In general, any obsessive time based planning like this submission fails for me. GTD is not time based. I prefer planning my tasks for the week, not for the hour.

I like the idea behind Kanban, but I do not think it fits most of our personal lives. Very good for certain work environments, though.

Pomodoro technique: It's good, but not really for task management. It's just a good technique to stay focused. Worked for a few months until I got used to it. Now it does not keep me focused and I can easily get distracted by the web, etc.

These days I'm trying this:

https://www.amazon.com/Master-Your-Workday-Now-Strategies/dp...

I think it works better than GTD, and fills the gaps in it. If you do not want to buy the book, a condensed, down to Earth version is available as the 1 Minute Todo List:

http://www.michaellinenberger.com/TheOneMinuteTo-DoList-Eboo...

Personally, I feel the book is better than the PDF at explaining the rationale behind the 1 minute todo list. Reading it was very calming. It explained all the problems I had had with GTD and similar techniques.

Basic ideas:

1. If you cannot examine your todo list inside of a minute, it is too long. So spend a lot of effort ensuring your daily todo list is not long.

2. Urgency and importance are not the same. We're hard wired for focusing on urgency, so do not try to make a TODO list purely based on importance.

3. Every week, identify everything that must be done in the next 10 days and put it on your list that you'll examine daily. Things you decide not to do in the next 10 days, keep in your "list to examine weekly".

4. Every day, multiple times of the day, look at the short list and do tasks from among them. If new tasks come in, add them, but keep the list short (no more than 20-25 items). If your list is getting too long, identify things to move to the "list to examine weekly" and get them out of the way.

5. If something needs to be done today, put it on the top of your list!

6. You'll also have "the list to examine monthly" as well as quarterly.

Very simple idea - works a bit better than GTD.

I think my biggest problem is that I need to reduce the goals in my life and focus on only a few. I have more goals than time in my life, and I keep jumping from one to the other. No task management system will work until I do this. Tough decisions need to be made!

kilo_man · 2014-07-30 · Original thread
Just listing books that have had a big impact on me:

* The Now Habit - http://www.amazon.com/dp/1585425524

* Getting Things Done - http://www.amazon.com/dp/0142000280

* Simply Christian - http://www.amazon.com/dp/0061920622

* Surprised by Hope - http://www.amazon.com/dp/0061551821

* The Great Divorce - http://www.amazon.com/dp/0060652950

* Mere Christianity - http://www.amazon.com/dp/0060652926

* The Meditations of Marcus Aurelius - http://www.amazon.com/dp/048629823X

* Tao Te Ching - http://www.amazon.com/dp/0060812451

Books from the Bible that I like:

* Genesis

* Judges

* Ruth

* Tobit

* Job

* Psalms

* Ecclesiastes

* Sirach/Ecclesiasticus

* Everything written by John

ciniglio · 2012-09-07 · Original thread
This is the problem that GTD tries to solve. Omnifocus is a great piece of software that's built on this methodology

http://www.amazon.com/Getting-Things-Done-Stress-Free-Produc...

http://www.omnigroup.com/products/omnifocus/

NonOrthodox · 2010-11-11 · Original thread
Sebastian Marshall's blog is realy great. He inspired me to start tracking my time on a daily basis, and I am certainly benefiting from it.

Here is an introduction page that he posted for newcomers: http://www.sebastianmarshall.com/?page_id=288 You can see that there is many topics under "Want to get more done?"

Though I know that most books are a waste of time, these were actually filled with great information, in my opinion:

http://www.web-books.com/Classics/ON/B0/B580/TOC.html

http://amzn.to/Getting-things-done

prateekdayal · 2010-11-03 · Original thread
Getting Things Done

http://www.amazon.com/Getting-Things-Done-Stress-Free-Produc...

So that I can read more and do other things :)

benatkin · 2010-08-05 · Original thread
Good article. I think it would be better if he used a counter-example or two, to make sure readers knew what he meant by "Business Books". For example, according to Amazon, "Getting Things Done" is a business book (two of the three categories it's in are subcategories of "Business"), but has specific actions that could help many startup founders.

http://www.amazon.com/Getting-Things-Done-Stress-Free-Produc...

imp · 2010-04-30 · Original thread
I would be wary of self improvement programs that charge money. I'm not sure what exactly you've looked into, but there's a lot of information out there for free or cheap.

I've spent a decent amount of time reading self-improvement books/blogs, and for me the stuff that made the most impact were things that were tailored to the problems I was having at the time.

Here's an overview of what I've read over the years that have helped me to some extent:

I Can Do Anything if I Only Knew What it Was: http://www.amazon.com/Could-Anything-Only-Knew-What/dp/04405...

Paul Graham's Essays: http://www.paulgraham.com/articles.html

How to Win Friends and Influence People: http://www.amazon.com/How-Win-Friends-Influence-People/dp/14...

Four Hour Work Week: http://www.amazon.com/4-Hour-Workweek-Escape-Live-Anywhere/d...

Randy Pausch, Time Management: http://www.youtube.com/watch?v=oTugjssqOT0

GTD: http://www.amazon.com/Getting-Things-Done-Stress-Free-Produc...

Steve Pavlina: http://www.stevepavlina.com/

7 Habits of Highly Effective People (reading this now): http://www.amazon.com/Habits-Highly-Effective-People/dp/0671...

So I would say "it depends" on what you want out of life and where you are now. Self improvement is a life-long task and you will need advice that changes as you progress.

Skeuomorph · 2009-09-03 · Original thread
Try GTD, aka David Allen's "Getting Things Done".

Book: http://www.amazon.com/Getting-Things-Done-Stress-Free-Produc...

Read the book, then get a tool like "Things" (for OSX) or try web software like http://vitalist.com/ that works cross platform and supports some group collaboration too.

And about those software project management books -- the guy who evangelized software engineering for the past three decades just published an article saying he was wrong: http://bit.ly/pRrkd (links to PDF).

Fresh book recommendations delivered straight to your inbox every Thursday.