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!
\
Attributions:
Edward O'Campo-Gooding's list of questions.
Julia Evans' blog post "Questions I'm asking in interviews".
Thanks to @bmastenbrook, @marcprecipice, @danluu, @kelseyinnis, @zmagg, @graue, and @ircolle for awesome question suggestions (per Julia).
This file contains 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
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; |
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