Skip to content

Instantly share code, notes, and snippets.

@nicksan2c
nicksan2c / terminal-emulators-for-windows.txt
Last active March 22, 2017 04:31
Terminal Emulators for Windows
http://www.thewindowsclub.com/free-ssh-client-software-for-windows
http://mobaxterm.mobatek.net/features.html
https://en.wikipedia.org/wiki/List_of_terminal_emulators#Microsoft_Windows
https://www.slant.co/topics/1552/~terminal-emulators-for-windows
@nicksan2c
nicksan2c / grant-writing
Created March 22, 2017 04:14
Grant Writing
http://www.advancedclustering.com/how-strong-is-your-grant-proposal-for-hpc-funding/
http://www.advancedclustering.com/high-performance-computing-grant-proposal-writing/
http://www.advancedclustering.com/grant-writing-white-paper/
@nicksan2c
nicksan2c / slurm-tips-and-tricks.txt
Created March 22, 2017 04:12
Slurm Tips and Tricks
show all non-responsive nodes
% sinfo -d
show all drained nodes
% sinfo -d | grep drain
show all dead nodes
% sinfo -d | grep dead
show job size, availability, time limit and node status by partition
# install vagrant
macmini:vagrant tru$ VERS=1.9.1
macmini:vagrant tru$ curl https://releases.hashicorp.com/vagrant/${VERS}/vagrant_${VERS}.dmg > vagrant_${VERS}.dmg
macmini:vagrant tru$ curl https://releases.hashicorp.com/vagrant/${VERS}/vagrant_${VERS}_SHA256SUMS > vagrant_${VERS}_SHA256SUMS
macmini:vagrant tru$ grep vagrant_${VERS}.dmg vagrant_${VERS}_SHA256SUMS | shasum -a 256 -c && \
macmini:vagrant tru$ hdiutil mount vagrant_${VERS}.dmg && \
macmini:vagrant tru$ sudo installer -pkg /Volumes/Vagrant/Vagrant.pkg -target /
macmini:vagrant tru$ hdiutil unmount /Volumes/Vagrant
# installing VirtualBox
macmini:vagrant tru$ VERSVB=5.1.14