Skip to content

Instantly share code, notes, and snippets.

View clifton's full-sized avatar
🎯

Clifton King clifton

🎯
View GitHub Profile
---
:verbose: true
:update_sources: true
:sources:
- http://gemcutter.org
- http://gems.rubyforge.org/
- http://gems.github.com/
:backtrace: false
:bulk_threshold: 1000
:benchmark: false
We couldn’t find that file to show.
filetype on " to prevent non-0 exit codes
filetype off
call pathogen#runtime_append_all_bundles()
filetype plugin indent on
set nocompatible
set modelines=0
set softtabstop=2
" Based on
runtime colors/ir_black.vim
let g:colors_name = "grb256"
hi pythonSpaceError ctermbg=red guibg=red
hi Comment ctermfg=darkgray
hi StatusLine ctermbg=darkgrey ctermfg=white
Image: nope.jpg
Format: JPEG (Joint Photographic Experts Group JFIF format)
Class: DirectClass
Geometry: 40x40+0+0
Resolution: 750x750
Print size: 0.0533333x0.0533333
Units: PixelsPerInch
Type: ColorSeparation
Endianess: Undefined
Colorspace: CMYK
<?xml version="1.0" encoding="UTF-8"?>
<organizations>
<organization>
<id>364</id>
<short_name>East Hall</short_name>
<long_name>East Resident Hall</long_name>
<treasury_journals>
<journal>
<name>Resident Hall Supplies</name>
shared: &defaults
adapter: mysql<%= "2" if Rails.version.first == "3" %>
# XXX: investigate reconnect setting for rails 3
# reconnect: true
database: orgsync_dev
host: localhost
username: root
password:
development:
app/assets/javascripts/orgsync.mass_account_selector.js
129: $(selected_list_children.last()).after(entry);
317: members_list.children().last().after('<div class="new_notice mas_search_message">Only displaying the first ' + search_limit + ' results.</div>');
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
// evented programming with clicks
$("#link").on("click", function (event) {
alert("You clicked me!");
});
// evented programming with messages
connection.on("message", function (message) {
alert("I received this message: " + message);
});