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
#!/usr/bin/env python | |
# Usage: | |
# 1. Go to https://app.greenhouse.io/interviews?type=past and copy the source code. | |
# 2. Run "pbpaste | ./greenhouse.py" | |
# 3. Analyze the CSV in the program of your choice. | |
from bs4 import BeautifulSoup | |
from itertools import chain | |
import csv |
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
// ==UserScript== | |
// @name Google Calendar Guests Can Modify Event By Default | |
// @namespace http://tampermonkey.net/ | |
// @version 0.4 | |
// @updateURL https://gist.githubusercontent.com/mwek/9962f97f3bde157fd5dbd2b5dd0ec3ca/raw/user.js | |
// @description Enables 'Guests can modify event' setting for google calendar by default, when creating a new event. | |
// @author Robin Drexler | |
// @match https://calendar.google.com/* | |
// @match https://www.google.com/calendar/* | |
// @grant none |
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
#!/usr/bin/env python | |
# | |
#===- clang-format-diff.py - ClangFormat Diff Reformatter ----*- python -*--===# | |
# | |
# The LLVM Compiler Infrastructure | |
# | |
# This file is distributed under the University of Illinois Open Source | |
# License. See LICENSE.TXT for details. | |
# | |
#===------------------------------------------------------------------------===# |