March's YouTube roundup
Here's your monthly round-up.
Make your LLM more efficient with Johnny.Decimal (2026-03-04)
https://youtu.be/h5TUFFQEJgwAttention to detail gets you hired (2026-03-07)
https://youtu.be/J2Sm9oIfj9AJohnny.Decimal wasn't designed to organise everything (2026-03-11)
https://youtu.be/DaK99lMlHH4Meetings – at least they're not email (2026-03-14)
https://youtu.be/EybKGE_TM_kI use the structure like a big checklist (2026-03-18)
https://youtu.be/2jSjo-94cCUFly around your system with these terminal tricks (2026-03-21)
https://youtu.be/SM2TlZMOIYoAn easy way to save 20 minutes a day (2026-03-30)
https://youtu.be/dEv7EYeX1PoDecimal 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