Skip to content

Instantly share code, notes, and snippets.

@djtriptych
djtriptych / splice.xml
Created March 29, 2012 22:00 — forked from anonymous/splice.xml
Splicer job
<job>
<!-- The source URL for the PDF -->
<source href="http://1ticket.com/viewpdf2.asp?bypassid=%7BA0ECAFB4-B1DF-4DE7-BB96-DABA1C91BDCC%7D" />
<!-- The callback URL to call when the job is complete -->
<option name="callback" value="http://1ticket.com/callback.asp" />
<!-- When true ignore case when searching for matches -->
<option name="ignorecase" value="true" />
<!-- When false, allow substring matches -->
<option name="exact" value="false" />
<!-- A list of zero or more splices -->
@djtriptych
djtriptych / dfw.sh
Created February 21, 2012 21:59
Download full DFW interview.
#!/usr/bin/env bash
# Part 1
cclive http://www.youtube.com/watch?v=N5IDAnB_rns
# Part 2
cclive http://www.youtube.com/watch?v=AlUmT_biDwI
# Part 3
cclive https://www.youtube.com/watch?v=LPIKae5qRwM
@djtriptych
djtriptych / build.sh
Created January 16, 2012 04:02
Tools I Use
We couldn’t find that file to show.
@djtriptych
djtriptych / fizzbuzz.js
Created January 12, 2012 06:59
FizzBuzz implementations with no if/else statements.
// Do 'fizzbuzz' for numbers from 1 to n, no if/else
var fizzbuzz = function (n) {
var i = 0;
while (i++ < n)
console.log(i, !(i%15)&&'fizzbuzz'||!(i%5)&&'buzz'||!(i%3)&&'fizz'||i);
};
// Do fizzbuzz recursively (no loop structures)
var fizzbuzz_r = function (n) {
@djtriptych
djtriptych / fizzbuzz.js
Created January 11, 2012 07:51
OKCoder examples
// fizzbuzz.js
// Author: Triptych
// Study on fizzbuzz
// Note: You can run this code in your scratchpad. Just copy & paste.
//
// ignore the next line; it's for nerds.
if (!console && print) var console = {log:print};
// Correct "fizzbuzz" implementation.