Skip to content

Instantly share code, notes, and snippets.

View lbjay's full-sized avatar

Jay Luker lbjay

View GitHub Profile
@lbjay
lbjay / harvard.js
Last active August 29, 2015 14:22
canvas styleguide foolery
$(document).ready(function(e) {
var harvardLogo = "<a class='harvardLogo' href='/'><img src='https://s3.amazonaws.com/tlt-static/canvas/branding/global/images/spacer.gif'></a>";
$('#header-inner').prepend(harvardLogo);
var harvardCopy = '<p>Copyright &copy; 2015 The President and Fellows of Harvard College</p>';
harvardCopy += '<p><a href="https://wiki.harvard.edu/confluence/display/canvas/Harvard+Privacy+Policy+for+Canvas" id="privacy_policy_link">Privacy Policy</a> | <a href="https://wiki.harvard.edu/confluence/display/canvas/Harvard+Acceptable+Use+Policy+for+Canvas" id="acceptable_use_policy_link">Acceptable Use Policy</a></p>';
$('footer').html(harvardCopy);
});
@lbjay
lbjay / logstash.conf
Last active August 29, 2015 14:22
apache-elk-in-five-minutes logstash.conf
input {
tcp {
port => 3333
}
}
filter {
grok {
match => { "message" => "%{COMBINEDAPACHELOG}" }
}
# do not create a queue: section for your test environment
test:
adapter: postgresql
encoding: utf8
database: canvas_test
host: localhost
username: postgres
timeout: 5000
login: &login
/home/ec2-user/harvardedits/anon/node_modules/wikichanges/node_modules/irc/lib/parse_message.js:39
message.command = match[1];
^
TypeError: Cannot read property '1' of null
at parseMessage (/home/ec2-user/harvardedits/anon/node_modules/wikichanges/node_modules/irc/lib/parse_message.js:39:28)
at iterator (/home/ec2-user/harvardedits/anon/node_modules/wikichanges/node_modules/irc/lib/irc.js:753:27)
at Array.forEach (native)
at Socket.<anonymous> (/home/ec2-user/harvardedits/anon/node_modules/wikichanges/node_modules/irc/lib/irc.js:752:15)
at Socket.EventEmitter.emit (events.js:95:17)
at Socket.<anonymous> (_stream_readable.js:745:14)
Bringing machine 'default' up with 'docker' provider...
==> default: Building the container from a Dockerfile...
default: Image: e7c5e7043c84
==> default: Fixed port collision for 22 => 2222. Now on port 2200.
==> default: Creating the container...
default: Name: vagrant_elastic_docker_default_1417033411
default: Image: e7c5e7043c84
default: Volume: /home/jluker/projects/vagrant_elastic_docker:/vagrant
default: Port: 2200:22
default:
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","description":"View this Pull Request on GitHub","action":{"@type":"ViewAction","url":"https://github.com/adsabs/bumblebee/pull/150","name":"View Pull Request"}}</script>
System: Host: jluker-Latitude-E7440 Kernel: 3.13.0-24-generic x86_64 (64 bit, gcc: 4.8.2)
Desktop: Gnome Distro: Linux Mint 17 Qiana
Machine: System: Dell product: Latitude E7440 version: 01
Mobo: Dell model: 07F3F4 version: A00 Bios: Dell version: A09 date: 05/01/2014
CPU: Dual core Intel Core i7-4600U CPU (-HT-MCP-) cache: 4096 KB flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx) bmips: 10775.7
Clock Speeds: 1: 756.00 MHz 2: 756.00 MHz 3: 756.00 MHz 4: 2000.00 MHz
Graphics: Card: Intel Haswell-ULT Integrated Graphics Controller bus-ID: 00:02.0
X.Org: 1.15.1 drivers: intel (unloaded: fbdev,vesa) Resolution: [email protected]
GLX Renderer: Mesa DRI Intel Haswell Mobile GLX Version: 3.0 Mesa 10.1.3 Direct Rendering: Yes
Audio: Card-1: Intel Lynx Point-LP HD Audio Controller driver: snd_hda_intel bus-ID: 00:1b.0
[ 6.049]
X.Org X Server 1.15.1
Release Date: 2014-04-13
[ 6.049] X Protocol Version 11, Revision 0
[ 6.049] Build Operating System: Linux 3.2.0-37-generic x86_64 Ubuntu
[ 6.049] Current Operating System: Linux jluker-Latitude-E7440 3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014 x86_64
[ 6.049] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-24-generic root=UUID=de25c969-663b-4ecd-b22d-5c1de5d23a6d ro quiet splash vt.handoff=7
[ 6.049] Build Date: 16 April 2014 01:36:29PM
[ 6.049] xorg-server 2:1.15.1-0ubuntu2 (For technical support please see http://www.ubuntu.com/support)
[ 6.049] Current version of pixman: 0.30.2
@lbjay
lbjay / gist:da42cfc7f4a8f7824c72
Created August 29, 2014 13:15
linux mint xorg.conf
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
@lbjay
lbjay / gist:c57e28a486bc1e10c82f
Last active August 29, 2015 14:05
tsdb-eval logstash config
input {
udp {
port => 3333
codec => json
}
}
filter {
date {
match => [ "created", "YYYY-MM-dd'T'HH:mm:ssZZ" ]