LiveCoding
NOTE: TODO: This page needs updates to work with MDX
youtube: https://www.youtube.com/watch?v=QaC5yOIDqzs
Start: Updating my ImportPhoto script to see if I can split out track times from the GoPro mp4 files.
- Turns out, didn't need to update. Like the structrue as is.
25min:
- etymology form.
https://www.etymonline.com
~ 35min - working on moving gif dirs and putting back in, zsh git status prompt
1:03 -- Hugo file maker commands
Make a tool that makes new hugo files and launches them - could set filename and title both and also a type that would determine the template.
https://linuxize.com/post/bash-functions/
https://stackoverflow.com/questions/2518127/how-do-i-reload-bashrc-without-logging-out-and-back-in
1:35:
Update launch d script.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.alanwsmith.open_current_gif</string>
<key>ProgramArguments</key>
<array>
<string>/bin/bash</string>
<string>-c</string>
<string>open /Users/alans/woodshed/launchpad/_gif_to_send</string>
</array>
<key>WatchPaths</key>
<array>
<string>/Users/alans/woodshed/launchpad/_gif_to_send</string>
</array>
</dict>
</plist>
Open Safari to a URL from the Command line:
open -a Safari http://localhost:1313/
via: https://apple.stackexchange.com/a/305897