- 1 onion
- 1 chilli
- cumin
- chilli powder (if you want more kick)
- turkey
- tomatoes
- oil
- salt
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
| ___ ______ Frobtech, Inc. | |
| /__/\ ___/_____/\ | |
| \ \ \ / /\\ | |
| \ \ \_/__ / \ "If you've got the job, | |
| _\ \ \ /\_____/___ \ we've got the frob." | |
| // \__\/ / \ /\ \ | |
| _______//_______/ \ / _\/______ | |
| / / \ \ / / / /\ | |
| __/ / \ \ / / / / _\__ |
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 | |
| from collections import OrderedDict | |
| import pip | |
| import sys | |
| class PackageInfo(object): | |
| def __init__(self, *args, **kwargs): | |
| self._info_struct = {} |
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
| import re | |
| def decamelify(string): | |
| # http://stackoverflow.com/questions/1175208/elegant-python-function-to-convert-camelcase-to-camel-case | |
| return re.sub( | |
| r'((?<=[a-z0-9])[A-Z]|(?!^)[A-Z](?=[a-z]))', | |
| r'_\1', | |
| string, | |
| ).lower() |
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
| class ConsoleOutputDammit(object): | |
| class Colors: | |
| HEADER = '\033[95m' | |
| OKBLUE = '\033[94m' | |
| OKPINK = '\033[95m' | |
| OKGREEN = '\033[92m' | |
| OKCYAN = '\033[96m' | |
| WARNING = '\033[93m' | |
| FAIL = '\033[91m' | |
| NATIVE = '\033[m' |
I hereby claim:
- I am rvause on github.
- I am rvause (https://keybase.io/rvause) on keybase.
- I have a public key whose fingerprint is B276 D53A 58BF A7F0 AD47 D0E8 65CD 8762 56FC F33E
To claim this, I am signing this object:
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
| 'use strict'; | |
| var http = require('http'); | |
| var https = require('https'); | |
| var zlib = require('zlib'); | |
| module.exports = function (grunt) { | |
| grunt.registerMultiTask('httpfetch', 'Fetch file over HTTP', function () { | |
| var _this = this; | |
| this.files.forEach(function (file) { |
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
| import os.path as op | |
| import sublime_plugin | |
| class CurrentFile(sublime_plugin.EventListener): | |
| def on_activated_async(self, view): | |
| encoding = view.encoding() | |
| if encoding == 'Undefined': | |
| encoding = '' |
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 | |
| import os | |
| import sys | |
| class ProgramError(Exception): | |
| pass | |
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
| # Thinkpad T420 | |
| hwmon /sys/devices/virtual/thermal/thermal_zone0/temp | |
| hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon2/temp1_input | |
| hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon2/temp2_input | |
| hwmon /sys/devices/platform/coretemp.0/hwmon/hwmon2/temp3_input | |
| tp_fan /proc/acpi/ibm/fan | |
| # Semi aggressive | |
| #(0, 0, 55) |