Skip to content

Instantly share code, notes, and snippets.

View rixth's full-sized avatar

Thomas Rix rixth

View GitHub Profile
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active April 20, 2024 16:52
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@brandongalbraith
brandongalbraith / interview-questions-cheat-sheet.md
Last active January 21, 2021 03:49 — forked from jvns/interview-questions.md
Interview Questions Cheat Sheet
anonymous
anonymous / remove_raws.sh
Created January 1, 2013 01:34
If you have a bunch of raw/jpg pairs in a directory, this script will remove the raw files that do not have a corresponding jpg.
for raw_file in *.CR2; do; \
jpg_file=`echo $raw_file | sed -e 's/CR2$/JPG/'`; \
if [ ! -f $jpg_file ]; then;
rm $raw_file;
fi;
done;
@robinsmidsrod
robinsmidsrod / _INSTALL.md
Last active March 21, 2024 23:00
Bootstrapping full iPXE native menu with customizable default option with timeout (also includes working Ubuntu 12.04 preseed install)

Add the following chunk to your existing ISC dhcpd.conf file.

if exists user-class and ( option user-class = "iPXE" ) {
    filename "http://boot.smidsrod.lan/boot.ipxe";
}
else {
    filename "undionly.kpxe";
}

(or see https://gist.github.com/4008017 for a more elaborate setup