brew install youtube-dl ffmpegyoutube-dl -f best 'http://www.youtube.com/watch?v=P9pzm5b6FFY'Here is a list of tools and gear I use to make YouTube videos for coding. I will try to keep it up-to-date as I evolve and get better at producing content. Leave a comment, if you have suggestions!
I use both Mac and Windows, but I am currently doing all the capture and production on Windows. For coding, I find the Linux shell much better than PowerShell or the Windows Command Prompt.
curl -sSL https://get.haskellstack.org/ | shexport MY_NAME="MyName"
sudo scutil --set ComputerName "$MY_NAME" && \
sudo scutil --set HostName "$MY_NAME" && \
sudo scutil --set LocalHostName "$MY_NAME" && \
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string "$MY_NAME"
- Describe "type declaration", "type definition", "equation", "expression"
- Are type declarations required? When (not)?
- What is referential transparency?
- Can pattern matching match a specific value?
Follow the recommended approach to prepare for the standard Linux install (below).
| module RandomDouble | |
| import Data.Bits | |
| import Data.Vect | |
| import Effects | |
| import Effect.StdIO | |
| import Effect.Random | |
| -- 2^53 as an Integer | |
| twoTo53 : Integer |