<p>As a continuation of our <ahref="../macroworkflow/index.html">previous tutorial on macro workflow</a>, to write your todo list effectively, you need to contextualize it in a particular project (or topic) list the tasks, label them, and note down on what other task do they depend on.</p>
<p>As you can see here, we have our 2 Projects: Infrastructure and Opsec, with tasks under each that are labeled, this is for us to be able to contextualize them more easily.</p>
<p>And with the label at the end, we also write which other task must be completed before starting each task, if there are any.</p>
<h2><b>What happens when the todo list gets too big ?</b></h2></br></br>
<p>Following this way of working is nice at first, but when the todo list gets too big to be done in one day or week, it's going to feel very overwhelming. For example if i were to detail what i have to do for the Deniable VMs tutorial</p>
<p>as you can see, the smaller the number, the higher level we have for the todo list. <b>The master todolist is the 0.txt text file</b>, it references the projects and labels them, and also labels each todo list underneath.</p>
<pre><codeclass="nim">
[ mainpc ] [ /dev/pts/4 ] [~/todo lists]
→ cat 0.txt
-Project Opsec (243 -> 211)
-Privacy Category (2112)
-Linux Host OS Task (21121)
-Anonymity Category (2113)
-Deniability Category (2114)
-Veracrypt Task (21121 -> 21141.txt)
-Deniable VMs Task (21141 -> 21142.txt)
-Project Infrastructure (24)
-setup VPS (241)
-create the blog (241 -> 242)
-officially announce the blog is accepting contributions (242 -> 243.txt)
</code></pre>
<p>Now we have the todolist "Deniable VMs" labeled 21142, so we have the <b>21142.txt textfile</b> containing the todolist accordingly:</p>
<pre><codeclass="nim">
[ mainpc ] [ /dev/pts/4 ] [~/todo lists]
→ cat 21142.txt
-Deniable VMs todo list, not Task (21141 -> 21142)
-To be explained:
- What is the usecase ?
- What tools are going to be used ?
- Why do we need Veracrypt ?
- Why do we need Whonix ?
-To be showcased:
- How to create the hidden volume
- How to put the Whonix VM inside the hidden volume
- How to use the emergency shutdown script as a non-root user
- How to start the emergency shutdown script with a cinnamon keyboard shortcut
</code></pre>
<p>And that's it! now you have a very rudimentary way of keeping track of what you need to do, in what context, and in what order.</p>