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
--- | |
:verbose: true | |
:update_sources: true | |
:sources: | |
- http://gemcutter.org | |
- http://gems.rubyforge.org/ | |
- http://gems.github.com/ | |
:backtrace: false | |
:bulk_threshold: 1000 | |
:benchmark: false |
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
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 |
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
" 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 |
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
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 |
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
<?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> |
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
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: |
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
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>'); |
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
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'); |
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
// 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); | |
}); |