Skip to content

Instantly share code, notes, and snippets.

View nonissue's full-sized avatar
πŸ’­
Β―\_(ツ)_/Β―

Andy Williams nonissue

πŸ’­
Β―\_(ツ)_/Β―
View GitHub Profile
finished: function(fileInfo, formFields) {
var originalImage = fileInfo;
var thumbnailPaths = [];
var thumbnailSizes = Object.keys(this.imageVersions);
_.each(thumbnailSizes, function(folder){
thumbnailPaths.push(fileInfo.subDirectory + "/" + folder + "/" + fileInfo.name);
})
var newImage = _.extend(originalImage, {
@nonissue
nonissue / keybase.md
Created April 8, 2015 05:55
keybase.md

Keybase proof

I hereby claim:

  • I am nonissue on github.
  • I am andreww (https://keybase.io/andreww) on keybase.
  • I have a public key whose fingerprint is 812F D47B 6707 8FD7 FFD2 FDCC C6B4 4805 6631 2BFB

To claim this, I am signing this object:

<!doctype html>
<html>
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="description" content="home of andy williams">
<meta name="author" content="andy williams">
<meta charset="utf-8" />
line = getInput()
sentence_count = 0
while (line != EOF):
sentence_count = sentence_count + 1
print("Sentence #%d: %s" %(sentence_count,line))
line = getInput()