title: Technical Resume Hints
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
/************************************************************************* | |
* | |
* OrkMain.c | |
* ORKWare Wired RC Control Code | |
* Library for use with 2011 OSURC Robotics Kit (ORK). | |
* | |
* Copyright (C) 2011 OSURC. Released under the GNU LGPL3. | |
* http://oregonstate.edu/groups/osurc/ | |
* | |
* Written by Emily Dunham <[email protected]> |
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
Lug: | |
- Bashes/sprints | |
- External speakers | |
- Newbie Bash / HFOSS | |
OSEL Tasks: | |
- Training | |
- Freshman Mentors | |
- Ambassadors | |
- CS Student Guides |
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
texts = [ | |
"You are walking through the woods.", # 0 | |
"You see a bear! What do you do?", # 1 | |
"The bear eats you and you die.", # 2 | |
"You don't have a sandwich!", # 3 | |
"You find a sandwich!", # 4 | |
"The bear is very angry at you for stealing its food.", # 5 | |
"The bear becomes your friend! You win!" # 6 | |
] |
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
Vagrant - http://shop.oreilly.com/product/0636920026358.do -- $23.99 | |
Mastering nginx - http://shop.oreilly.com/product/9781849517447.do -- $26.99 | |
Microsoft Sharepoint 2013 - http://shop.oreilly.com/product/0790145368348.do -- $23.99 | |
Learning Python - http://shop.oreilly.com/product/0636920028154.do -- $47.99 | |
Metasploit Startguide - http://shop.oreilly.com/product/9781849694483.do -- $14.99 | |
Accessibility Handbook - http://shop.oreilly.com/product/0636920024514.do -- $14.99 | |
Liars and Outliers - http://shop.oreilly.com/product/9781118143308.do -- $19.95 | |
Cryptography Engineering - http://shop.oreilly.com/product/9780470474242.do -- $55 | |
Good Math - http://shop.oreilly.com/product/9781937785338.do -- $34, dead tree only?? |
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
['Andriod', 'Arch', 'BSD', 'Centos', 'ChromeOS', 'CoreOS', 'DSL', 'Debian', 'Fedora', 'Gentoo', 'Linux From Scratch', 'Mac Homebrew Stuff', 'Meego/Tizen', 'OSX', 'RHEL', 'Slackware', 'Ubuntu', 'Ubuntu Server', 'Unix', 'Windows'] |
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
[08:00] < simpson> | brutal_chaos, edunham, mythmon, TkTech : Mass ping. | |
There are many things that need to be (re)built. In no | |
specific order... | |
[08:01] < simpson>| * Packet parsing needs to be redone. Construct is both | |
too slow and too unmaintainable. The protocol is big enough that walls | |
of struct.unpack() would be quite reasonable, and we need to figure out | |
how to subparse all of the domain-specific formats. | |
https://github.com/bravoserver/bravo/issues/433 |
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
#! /usr/bin/env python | |
import sys | |
import re | |
def get_doku_table(): | |
if len(sys.argv) < 2: | |
print """Please pass the name of the file containing your dokuwiki | |
table as an argument to this script.""" | |
exit() | |
path = sys.argv[1] |
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
#!/usr/local/lib python2.7 | |
## | |
# NAME | |
# wiki2rst.py -- convert Dokuwiki page syntax to reStructured Text | |
# | |
# REQUIRES | |
# pandoc (ext.program) | |
# | |
# SYNTAX | |
# wiki2rst.py pages pages/tutorials/tutorial-part-4-2.txt (single file) |
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
#! usr/bin/env python | |
# Hieronder volgt de code voor een rekenmachine waarbij aan de gebruiker | |
# de invoer van 2 getallen wordt gevraagd en welke operandor op de 2 | |
# getallen toegepast moet worden | |
from time import sleep | |
def calculator(name): | |
OlderNewer