1. mamba
use fresh install
2. fastchan channel
| # yt-dlp download playlist | |
| yt-dlp -o "%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s" 'https://www.youtube.com/playlist?list=PL9dIWiKCV573fa_ohMcJJbow7y--zAxd1' |
| udevil mount -o fmask=0133,dmask=0022 /dev/sdb2 |
1. mamba
use fresh install
2. fastchan channel
| from IPython.core.display import display, HTML | |
| display(HTML("<style>.end_space { height:600px !important; }</style>")) |
| # https://superuser.com/questions/776008/how-to-remove-a-path-from-path-variable-in-fish/1091983#1091983?newreg=73ef956cba5a413aa6f2d21a85d88f5f | |
| echo $fish_user_paths | tr " " "\n" | nl | |
| echo "pick the number x, then" | |
| set --erase --universal fish_user_paths[x] |
https://hexdocs.pm/ecto/getting-started.html https://github.com/elixir-ecto/ecto/tree/master/examples/friends
https://medium.com/@a4word/building-small-elixir-services-using-ecto-without-phoenix-1aba00b53e54 https://github.com/aforward/gen_template_ecto_service
https://www.toptal.com/elixir/meet-ecto-database-wrapper-for-elixir
| import unittest | |
| from beer_song import recite | |
| # Tests adapted from `problem-specifications//canonical-data.json` @ v2.1.0 | |
| class BeerSongTest(unittest.TestCase): | |
| def test_first_generic_verse(self): | |
| expected = [ |
| # This file contains the configuration for Credo and you are probably reading | |
| # this after creating it with `mix credo.gen.config`. | |
| # | |
| # If you find anything wrong or unclear in this file, please report an | |
| # issue on GitHub: https://github.com/rrrene/credo/issues | |
| # | |
| %{ | |
| # | |
| # You can have as many configs as you like in the `configs:` field. | |
| configs: [ |