I know it's a mouthful, but hear me out:
I've been looking for an autocomplete field that worked for my purposes (lookup in the database, not in memory, and support multiselect and the ability to limit the number of items a field could support.
Since...
Here's my current Elixir VSCode snippets elixir.json
file.
You can add it to VSCode by Ctrl/Cmd+Shift+P
and choosing Preferences : Configure User Snippets
, then opening elixir.json
. If you don't have one yet, you can create a new snippet file in the...
By default users other than root cannot open ports below 1000, for security reasons. If you want to - say - run your website in Elixir without nginx on port 80 or 443, you can allow the Erlang binary to open ports below 1000 using setcap (run as root):...
If - like me - you get stuck on boot after Manjaro updates to Linux Kernel 5.10, the solution is pretty simple:
- Boot into 5.9 (you can choose the option in the grub boot menu
- Reinstall the 5.10 kernel with:
sudo pacman -S linux510
- For good measure,...