There are a few tricks:<p>Todo/Note dichotomy:<p>--------------------<p>Doing away with "todo" and "note" dichotomy can be useful. I use TaskWarrior[0] to add "tasks", but also "notes". I have them organized in projects, tags such as +musing, +engineering, +read, +watch, etc.<p>I'm watching an interview of someone relevant and they mention a book?<p><pre><code> task add +read "X book mentioned by Y in interview with Z: youtube.com/..."
</code></pre>
The dump of these notes formed the seed of our company's knowledge base and it continues to feed it and refine it.<p>The tasks are in a `.task` directory that is a repo. I have an alias to push them:<p><pre><code> function tupd() {
git -C ~/.task commit -a -m "Update tasks $(whoami)@$(hostname)"
git -C ~/.task push
}
</code></pre>
I can pull in my tasks and notes from my devices. I can search them by tag, by project, by word or regular expression. You can set due dates, start dates, etc. So you set three or four important tasks for the next day. It will sort them by an urgency score. It is one of those tool you could get started with using one command, but you can do a <i>lot</i> of things.<p>If you're working on a project, you have a nice knowledge base consisting of book titles, articles, interviews, talks, remarks, ideas, etc.<p>I have a script that exports work related notes into Markdown and pushes to a temporary repository for all my colleagues to see. Then we transfer that into proper issues, or our knowledge base.<p>Curate:<p>-------<p>Relevant entities often link to relevant entities. Entities being a person, book, video, movie, etc. When I discover a person who's good at something, I assign a higher weight to the entities they mention. For example, I watch an interview of someone who's good at something and they casually mention a book. I'll add that to my tasks and the book's author as an entity with a relevance score higher they would have been assigned without the recommendation. If the book author or book mention or cite an entity, I do the same.<p>Consume quality content. Find the relatively few N most relevant sources, human or otherwise, and then expand the graph from there.<p>Increases signal to noise ratio by increasing the signal.<p>Eliminate:<p>----------<p>I block sites from my search results with "Personal Blocklist" extension. For example, the dominant blog/outlet in data science churns out content written by data virgins; that is, people who have never touched data. Whenever you search for something, this website dominates search results. Therefore I have blocked it so I don't see it.<p>If you use Twitter, a similar thing works. There are profiles that are too noisy [enthusiasting/audience building/influencing] and I am better informed when I do not meet that content.<p>Increases signal to noise ratio by reducing noise. It's easier in a field where the overwhelming majority of content is garbage and it's trivial to tell garbage from good. Fast triage.<p>Reading web pages:<p>------------------<p>The "Just Read" extension[1] is a <i>great</i> extension. I have to read a <i>lot</i>, especially when diving into a domain for a client. This extension enables me to hit Ctrl + Shift + L and it changes the page's layout to a standardized sub 80 characters with a big font where I can <i>just read</i> the main content. The effect is amazing and appeasing. The first time I did that I sighed of relief.<p>Video:<p>------<p>Here are tips for watching videos[2].<p>TL;DR: "Video Speed Controller" extension[3] to watch at 16x speed videos where slides are on the screen. This makes it possible to know in 4 minutes if a one hour video is worth watching based on the "slides" on the screen. If it's good, you can then <i>invest</i> one hour watching it. If not, eliminate it. You can therefore go through a backlog of videos you added in your task with a +watch tag very quickly.<p>"YouTube Captions Search"[4]: when you're on a YouTube video, click on the extension and search for a keyword or a sentence. It'll display all the timestamps where that word is said and you can estimate the density, or go directly to the segment of interest.<p>Doing this drastically reduces your non-productive-watch-time and increases the signal to noise ratio. You'll eliminate irrelevant videos really fast.<p>So, when you're on something and you think a video is relevant but you don't have time, add it to the tasks (backlog). When you have time, go over the videos. Discard what's irrelevant. Invest in what is relevant.<p>Block and batch:<p>----------------<p>Blocking time is useful to get things done. For example, if you want to read something or go over a guide/tutorial, block one hour hour and commit not to do anything except that for that hour. You do things by not doing things.<p>There are things that have a due date, whether you like it or not. They must happen by a certain date or time. These are okay.<p>Focus:<p>------<p>Something has got to give. Items have different priorities, importance, potential, urgency, etc. Items that are similar in nature ought to be batched. For example, in most cases, you're better off lining up calls/meetings in contiguous time blocks instead of sprinkling them (week or day).<p>If you're having too many of those, improve writing, documentation, and information dissemination. There are many meetings we're not having simply because we put a lot of effort into making information flows to everyone [meeting minutes from last year with clients and potential investors in another continent are in Markdown in a repo management, and everyone can see them in a familiar template we use for everything].<p>Our video calls are recorded and disseminated so people can refer back to them without the need for another call to remember. We collaboratively edit the file during the call. We prototype, fix bugs, add features during the call sometimes. We make sure to make them count.<p>Generally speaking: not reading/watching bad books/papers/movies makes time for better ones.<p>Money is also an effective instrument to make time.<p>- [0]: <a href="https://taskwarrior.org/" rel="nofollow">https://taskwarrior.org/</a><p>- [1]: <a href="https://chrome.google.com/webstore/detail/just-read/dgmanlpmmkibanfdgjocnabmcaclkmod" rel="nofollow">https://chrome.google.com/webstore/detail/just-read/dgmanlpm...</a><p>- [2]: <a href="https://news.ycombinator.com/item?id=25301518" rel="nofollow">https://news.ycombinator.com/item?id=25301518</a><p>- [3]: <a href="https://chrome.google.com/webstore/detail/video-speed-controller/nffaoalbilbmmfgbnbgppjihopabppdk" rel="nofollow">https://chrome.google.com/webstore/detail/video-speed-contro...</a><p>- [4]: <a href="https://chrome.google.com/webstore/detail/youtube-captions-search/kimbeggjgnmckoikpckibeoaocafcpbg" rel="nofollow">https://chrome.google.com/webstore/detail/youtube-captions-s...</a>