Join 📚 Kevin's Highlights
A batch of the best highlights from what Kevin's read, .
**How to put it into action**:
• Block time for leisure like you block time for work
• Use a timer to ensure you take breaks in frequent intervals
• Adopt healthy work-life balance boundaries to imbibe play into your workday
7 Science-Backed Actionable Tips to Improve Your Focus
sunsama.com
There are many great books and courses on
Data Structures and Algorithms
but the one I would recommend is a book named
*[The Algorithm Design Manual](https://www.amazon.com/Algorithm-Design-Manual-Steven-Skiena/dp/1849967202)* by Steven Skiena.
You can also check out his course [here](https://www3.cs.stonybrook.edu/~skiena/373/videos/).
Key Computer Science Concepts Every Software Engineer Should Know – And How to Learn Them
Tamerlan Gudabayev
Load a selected template from a suggester
Show a suggester with different template options.
Load in the selected template from the suggester.
Check out that switch statement!
<%*
const choice = await tp.system.suggester(["Simple Note", "Book", "Music", "MOC"], ["Simple Note", "Book", "Music", "MOC"]);
let output = ""
switch(choice) {
case "Book":
output = await tp.file.include("[[-Book]]")
break;
case "Music":
output = await tp.file.include("[[-Music]]")
break
case "MOC":
output = await tp.file.include("[[-MOC]]")
break;
default:
new Notice("No Matching Template")
}
tR += output
%>
Templater Snippets
shbgm.ca
...catch up on these, and many more highlights