Skip to main content

26 Time Management Hacks I Wish I'd Known at 20

1. There’s always time. Time is priorities.
2. Days always fill up.
“Only plan for 4-5 hours of real work per day.” – David Heinemeier Hansson, 37 Signals
3. Work more when you’re in the zone. Relax when you’re not.
“It’s normal to have days where you just can’t work and days where you’ll work 12 hours straight.” – Alain Paquin, Whatsnexx
4. Respect your time and make it respected.
“Your time is $1000/hour, and you need to act accordingly.” – Jason Cohen, @asmartbear
5. Stop multi-tasking. It merely kills your focus.
6. Set up a work routine and stick to it. Your body will adapt.
7. We’re always more focused and productive with limited time.
8. Work is the best way to get working. Start with short tasks to get the ball rolling.
9. Work iteratively. Expectations to do things perfectly are stifling.
“Doing is better than perfect.” – Facebook company motto
10. More work hours doesn’t mean more productivity. Use constraints as opportunities.
11. Separate brainless and strategic tasks to become more productive.
“Separate thinking and execution to execute faster and think better.” – Sol Tanguay, Imarklab
12. Organize meetings early during the day. Time leading up to an event is often wasted.
13. Group meetings and communication (email or phone) to create blockes of uninterrupted work.
“A single meeting can blow a whole afternoon, by breaking it into two pieces each too small to do anything hard in.” – Paul Graham, YCombinator
14. Keep the same context throughout the day. Switching between projects / clients is unproductive.
15. Work around procrastination. Procrastinate between intense sprints of work (Pomodoro).
16. “Break the unreasonable down into little reasonable chunks. A big goal is only achieved when every little thing that you do everyday, gets you closer to that goal.” – Maren Kate, Escaping the 9 to 5
17. No 2 tasks ever hold the same importance. Always prioritize. Be really careful with to-do lists…
18. Always know the one thing you really need to get done during the day.
“Only ever work on the thing that will have the biggest impact.” – Jason Cohen, @asmartbear
19. Break tasks into hour increments. Long tasks are hard to get into; feels like it all needs to get done.
20. Delegate and learn to make use of other people.
“If something can be done 80% as well by someone else, delegate!” – John C. Maxwell, Author
21. Turn the page on yesterday. Only ever think about today and tomorrow.
“Yesterday’s home runs don’t win today’s games.” – Babe Ruth, Hall of Fame Baseball player
22. Set deadlines for everything. Don’t let tasks go on indefinitely.
23. Set end dates for intense or stressful activities. Everything ends at some point.
24. Always take notes.
“Get a reminder app for everything. Do not trust your own brain for your memory.” – Julien Smith, Author
25. “Write down anything that distracts you – google searches, random thoughts, new ideas, whatever. The point is, if you write them down, they’ll stop bubbling up when you’re in the zone.” – Steven Corona, Twitpic
26. Take breaks. Sometimes.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...