A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| #!/usr/bin/env bash | |
| # | |
| # This is sp, the command-line Spotify controller. It talks to a running | |
| # instance of the Spotify Linux client over dbus, providing an interface not | |
| # unlike mpc. | |
| # | |
| # Put differently, it allows you to control Spotify without leaving the comfort | |
| # of your command line, and without a custom client or Premium subscription. | |
| # |
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
Job search sites
| -- ghcid -c'stack repl --resolver nightly --package time' haskell-time.hs --allow-eval | |
| ---- | |
| -- # Haskell Time Crib Sheet | |
| ---- | |
| -- Excellent sources for this small guide include: | |
| -- | |
| -- * https://two-wrongs.com/haskell-time-library-tutorial.html | |
| -- * https://williamyaoh.com/posts/2019-09-16-time-cheatsheet.html |