This file contains hidden or 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
"""Custom log handler for posting log messages to HipChat. | |
Adapted from https://gist.github.com/3176710 | |
The API documentation is available at | |
https://www.hipchat.com/docs/api/method/rooms/message | |
The room id can be found by going to | |
https://{{your-account}}.hipchat.com/rooms/ids |
This file contains hidden or 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
# This ensures that all of our shell commands are run with bash and not any other shell. | |
SHELL := /bin/bash | |
# This is the name of the compiler. If you have `clang` installed you can use that instead. | |
CXX = g++ | |
# These are flags that are always sent to the compiler. | |
# -g generates debugging symbols for use in gdb and valgrind. This improves the | |
# output of those tools. | |
# |
This file contains hidden or 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
# Hey coops.. | |
# | |
# Imagine yourself on the other side of the table: two job openings, hundreds of resumes, | |
# _all of which_ look friggin' identical. Yeah, the HR departments at your MegaCorp XYZ are using | |
# automated tools to scan for keywords, and the coop department at your school is trying to beat | |
# you into submission to follow some "predefined template".. But, unless what you're aspiring to | |
# is to be an automaton at MegaCorp XYZ, relegated to writing test harnesses for code that will | |
# never see the light of day.. please do yourself a favor, and _be different_! Be bold, dammit. | |
# | |
# (Frankly, I'm falling asleep while reading your resumes.. Wake me up! Srsly.) |