March's YouTube roundup
Here's your monthly round-up.
Make your LLM more efficient with Johnny.Decimal
2026-03-04
Attention to detail gets you hired
2026-03-07
Johnny.Decimal wasn't designed to organise everything
2026-03-11
Meetings – at least they're not email
2026-03-14
I use the structure like a big checklist
2026-03-18
Fly around your system with these terminal tricks
2026-03-21
An easy way to save 20 minutes a day
2026-03-30
Decimal ozhoom from the forum sent me this AppleScript that you can hack to automate this process. Change the paths at the top.
# enter the folder location in quotes:
set path1 to "Users:john:xxxxxxxxxxxx" as alias
set path2 to "Users:john:P68 Personal Life" as alias
set path3 to "Users:john:xxxxxxxxxxxxx" as alias
set path4 to "Users:john:Downloads" as alias
tell application "Finder"
open path1
end tell
tell application "System Events" to perform action "AXPress" of menu item "New Tab" of menu "File" of menu bar item "File" of menu bar 1 of application process "Finder"
tell application "Finder"
activate
set target of front window to path2
end tell
tell application "System Events" to perform action "AXPress" of menu item "New Tab" of menu "File" of menu bar item "File" of menu bar 1 of application process "Finder"
tell application "Finder"
activate
set target of front window to path3
end tell
tell application "System Events" to perform action "AXPress" of menu item "New Tab" of menu "File" of menu bar item "File" of menu bar 1 of application process "Finder"
tell application "Finder"
activate
set target of front window to path4
end tell