Skip to content

Instantly share code, notes, and snippets.

View cb1kenobi's full-sized avatar

Chris Barber cb1kenobi

View GitHub Profile
@cb1kenobi
cb1kenobi / get-spam-blocklist
Last active August 29, 2015 14:10
Postfix CIDR blocklist update script
#!/usr/bin/env node
var http = require('http');
http.get({
hostname: 'www.spamhaus.org',
port: 80,
path: '/drop/drop.lasso'
}, function (res) {
if (res.statusCode !== 200) {
console.error('Failed to download http://www.spamhaus.org/drop/drop.lasso');
process.exit(1);
@cb1kenobi
cb1kenobi / gist:97253db17e46f814be86
Created October 20, 2014 21:07
Coda 2 vs Coda 2.5 indentation
Say you are editing an HTML file.
In Coda 2, if you type "<style>" and ENTER, the cursor lines up with the "<". If you type "foo {" and hit ENTER, the cursor lines up with "f".
In Coda 2.5, if you type "<style>" and ENTER, the cursor is tabbed in 1 level from the "<". Generally this is what you want. If you type "foo {" and hit ENTER, the cursor again is tabbed in 1 level from the "foo". The biggest annoyance is if I type "}", it doesn't automatically outdent.
@cb1kenobi
cb1kenobi / appid.js
Created August 4, 2014 17:23
Titanium CLI hook that changes the app id
/* Put this file in <product dir>/plugins/appid/hooks/
* then add this to your tiapp.xml:
* <plugins>
* <plugin>appid</plugin>
* </plugins>
*/
exports.cliVersion = '>=3.2.1';
exports.init = function (logger, config, cli, appc) {
@cb1kenobi
cb1kenobi / colors.reg
Created July 22, 2014 19:37
This is my custom sane color scheme for the Windows Command Prompt that makes colors easier to see
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe]
"QuickEdit"=dword:00000001
"ScreenBufferSize"=dword:270f0082
"WindowSize"=dword:002e0082
"FontSize"=dword:000e0007
"FontFamily"=dword:00000036
"FontWeight"=dword:00000190
"FaceName"="Consolas"
@cb1kenobi
cb1kenobi / github_widescreen
Last active November 6, 2019 05:07
Greasemonkey script to make GitHub widescreen friendly. There's probably some quirks. Use at your own risk.
// ==UserScript==
// @name GitHub Widescreen
// @namespace https://github.com
// @include https://github.com/*
// @grant none
// ==/UserScript==
(function() {
var style = document.createElement("style");
style.type = "text/css";
style.innerHTML = "\
@cb1kenobi
cb1kenobi / gist:3989139
Created October 31, 2012 19:02
How to install the Titanium CLI
[sudo] npm install -g titanium
titanium sdk install --branch 3_0_X --default
@cb1kenobi
cb1kenobi / gist:3364560
Created August 15, 2012 23:10
nginx 0.8.6 make install output
make -C out BUILDTYPE=Release V=1
make[1]: Entering directory `/home/chris/Downloads/node-v0.8.6/out'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/chris/Downloads/node-v0.8.6/out'
ln -fs out/Release/node node
python tools/install.py install
installing /usr/local/include/node/ares.h
installing /usr/local/include/node/ares_version.h
installing /usr/local/include/node/uv.h
installing /usr/local/include/node/v8-debug.h
var values = {bottom:1,height:1,left:1,right:1,top:1,width:1};
if (values["width"]) {
// win
}
@cb1kenobi
cb1kenobi / gist:2958328
Created June 20, 2012 05:48
Object.hasOwnProperty()
var values = {bottom:1,height:1,left:1,right:1,top:1,width:1};
if (values.hasOwnProperty("width")) {
// win
}
var values = {bottom:1,height:1,left:1,right:1,top:1,width:1};
if ("width" in values) {
// win
}