How to set up multiple accounts with Mutt E-mail Client
Thanks to this article by Christoph Berg
Directories and files
~/| lsblk | |
| sudo umount /dev/sd<?><?> | |
| xzcat ~/Downloads/linux.img.xz | sudo dd of=/dev/sd<?> conv=fdatasync status=progress |
| sudo dnf install -y http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm | |
| sudo dnf install -y akmods "kernel-devel-uname-r == $(uname -r)" | |
| sudo dnf install -y broadcom-wl | |
| sudo akmods | |
| sudo reboot |
| sudo pacman -S lightdm | |
| sudo pacman -S lightdm-gtk-greeter | |
| sudo systemctl enable lightdm | |
| sudo systemctl start lightdm |
| package main | |
| import ( | |
| "errors" | |
| "log" | |
| "net" | |
| "net/http" | |
| "strings" | |
| ) |
| https://thedefiant.io/feed/ | |
| https://www.coindesk.com/arc/outboundfeeds/rss/?outputType=xml | |
| https://cointelegraph.com/rss | |
| https://cryptopotato.com/feed/ | |
| https://cryptoslate.com/feed/ | |
| https://cryptonews.com/news/feed/ | |
| https://smartliquidity.info/feed/ | |
| https://finance.yahoo.com/news/rssindex | |
| https://www.cnbc.com/id/10000664/device/rss/rss.html | |
| https://time.com/nextadvisor/feed/ |
| ↗ |
| #!/bin/bash | |
| # Convert a .MOV to an animated .GIF using FFMPEG and Gifsicle. | |
| # Credit: https://gist.github.com/dergachev/4627207 | |
| # | |
| # Dependencies: | |
| # ffmpeg | |
| # gifsicle | |
| # | |
| # Example: |
Thanks to this article by Christoph Berg
Directories and files
~/| import path from 'path' | |
| import pino from 'pino' | |
| const STACKTRACE_OFFSET = 2 | |
| const LINE_OFFSET = 7 | |
| const { symbols : { asJsonSym} } = pino | |
| function traceCaller (pinoInstance) { | |
| const get = (target, name) => name === asJsonSym ? asJson : target[name] |
| yay -S realvnc-vnc-viewer |