Added more files

This commit is contained in:
Nathan Schneider
2019-09-25 14:30:03 -06:00
parent 06905e0bd7
commit 0c7e309365
3 changed files with 55 additions and 0 deletions
Executable
+8
View File
@@ -0,0 +1,8 @@
#!/bin/sh
# cv.sh, by ntnsndr, v. 20180729
# Summary: Uses Pandoc to generate CV pdf from source
# Input: None
# Output: A pandoc-proceessed output file
# Command content
pandoc -s -f markdown+smart --variable fontsize=11pt -o ~/Cloud/Dox/Schneider-CV.pdf ~/Cloud/Notes/CV.md
+29
View File
@@ -0,0 +1,29 @@
# Installation script for ntnsndr Deb dev environment
# utils
sudo apt-get -y install xdg-open
# nextcloud
# keepassxc
# emacs
sudo apt-get -y install emacs-gtk
sudo apt-get -y install elpa-markdown-mode
cd ~/.emacs.d/lisp/ && git clone git://github.com/bnbeckwith/wc-mode.git && mv wc-mode/wc-mode.el ./ && rm -rf wc-mode/ && cd ~
# gnome optional stuff
# to get Microsoft Exchange working on Gnome Calendar:
# sudo apt-get install evolution-ews
# pandoc
sudo apt-get -y install pandoc
sudo apt-get -y install pandoc-citeproc
sudo apt-get -y install texlive
# revealjs
# TO DO: https://github.com/hakimel/reveal.js/
# zotero
#DOWNLOAD AND UNPACK IN /opt/zotero
sudo /opt/zotero/set_launcher_icon
ln -s /opt/zotero/zotero.desktop ~/.local/share/applications/zotero.desktop
# IF WE CHANGE LOCATION, UPDATE THAT IN .emacs AND pandout SCRIPT
+18
View File
@@ -0,0 +1,18 @@
#!/bin/sh
# medlabweb, by ntnsndr, v. 20190905
# Summary: Downloads medlab website from GitLab and uploads to university server
# Input: N/A
# Live inputs: CU password
# Output: Uploaded website
# Download files
git clone https://gitlab.com/medlabboulder/medlab-website.git
cd medlab-website
# Build
bundle exec jekyll build
bundle exec jekyll deploy
# Delete
cd ..
rm -rf medlab-website