```{r, echo=FALSE, out.width="45%", fig.cap="Caption"}
knitr::include_graphics("fig/image.png")
```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; The following packages are needed: | |
| ;; 1. elfeed and elfeed-score (available from the rss doom module) | |
| ;; 2. citar | |
| ;; 3. org-ref | |
| ;; 4. org-roam and org-roam-bibtex | |
| (defconst robo/bib-libraries (list "~/bib-lib/robo-lib.bib" "~/bib-lib/robo-temp-lib.bib")) ; All of my bib databases. | |
| (defconst robo/main-bib-library (nth 0 robo/bib-libraries)) ; The main db is always the first | |
| (defconst robo/main-pdfs-library-paths `("~/bib-lib/pdfs/" "/home/robo/bib-lib/temp-pdfs/")) ; PDFs directories in a list |
- UEFI
- Systemd-boot (gummiboot)
- Encrypted root partition
- mkinitcpio
- Unified Kernel Image (UKI)
- Intel CPU
- NVIDIA GPU
- Wayland (sway)
- Secure Boot (optional)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Use systemd for managing NVIDIA driver suspend in drivers ====>>> PRIOR to version 470 <<<===== | |
| # https://download.nvidia.com/XFree86/Linux-x86_64/450.66/README/powermanagement.html | |
| # https://forums.developer.nvidia.com/t/unable-to-set-nvidia-kernel-module-parameters/161306 | |
| # Please note: In Fedora Linux you may need to just install the xorg-x11-drv-nvidia-power pakage | |
| # as sugested by @goombah88 in the comments below. | |
| TMP_PATH=/var/tmp | |
| TMPL_PATH=/usr/share/doc/nvidia-driver-460/ | |
| echo "options nvidia NVreg_PreserveVideoMemoryAllocations=1 NVreg_TemporaryFilePath=${TMP_PATH}" | sudo tee /etc/modprobe.d/nvidia-power-management.conf |
-
Download source code from Overleaf if you use it:
menu->download->source. -
Strip comments and combine all
texfiles (f01-main.tex,f02-intro.tex, etc.) into one filearxiv_main.tex.
# Replace f01-main.tex with the main tex file in your overleaf project
latexpand --empty-comments f01-main.tex > arxiv_main.tex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Gmail Example | |
| # mbsyncrc based on | |
| # http://www.ict4g.net/adolfo/notes/2014/12/27/EmacsIMAP.html | |
| # ACCOUNT INFORMATION | |
| IMAPAccount gmail | |
| # Address to connect to | |
| Host imap.gmail.com | |
| User <EMAIL_HERE> | |
| PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/.emacs.d/mu4e/.mbsyncpass-<EMAIL_HERE>.gpg" |