# March's YouTube roundup

> Links to the videos we published this month.

Here's your monthly round-up.

## Make your LLM more efficient with Johnny.Decimal (2026-03-04)

<YouTube id="https://youtu.be/h5TUFFQEJgw" />
<a href="https://youtu.be/h5TUFFQEJgw">https://youtu.be/h5TUFFQEJgw</a>

## Attention to detail gets you hired (2026-03-07)

<YouTube id="https://youtu.be/J2Sm9oIfj9A" />
<a href="https://youtu.be/J2Sm9oIfj9A">https://youtu.be/J2Sm9oIfj9A</a>

## Johnny.Decimal wasn't designed to organise everything (2026-03-11)

<YouTube id="https://youtu.be/DaK99lMlHH4" />
<a href="https://youtu.be/DaK99lMlHH4">https://youtu.be/DaK99lMlHH4</a>

## Meetings – at least they're not email (2026-03-14)

<YouTube id="https://youtu.be/EybKGE_TM_k" />
<a href="https://youtu.be/EybKGE_TM_k">https://youtu.be/EybKGE_TM_k</a>

## I use the structure like a big checklist (2026-03-18)

<YouTube id="https://youtu.be/2jSjo-94cCU" />
<a href="https://youtu.be/2jSjo-94cCU">https://youtu.be/2jSjo-94cCU</a>

## Fly around your system with these terminal tricks (2026-03-21)

<YouTube id="https://youtu.be/SM2TlZMOIYo" />
<a href="https://youtu.be/SM2TlZMOIYo">https://youtu.be/SM2TlZMOIYo</a>

## An easy way to save 20 minutes a day (2026-03-30)

<YouTube id="https://youtu.be/dEv7EYeX1Po" />
<a href="https://youtu.be/dEv7EYeX1Po">https://youtu.be/dEv7EYeX1Po</a>

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
```