Skip to content

Instantly share code, notes, and snippets.

lodash = _ = require('lodash')
request = require('request')
teamListUrl = () -> 'http://prod-api-madden.grw.io/api/teams'
# teamKey == 'bills' for example
templateDataUrl = (teamKey) -> "http://prod-api-madden.grw.io/api/templates/team-key/#{teamKey}"
gifDataUrl = (templateKey) ->
"http://prod-api-madden.grw.io/api/memes/template-key/#{templateKey}"
module Pi where
import Random
import Signal
import List
import Graphics.Element (Element, empty)
import Graphics.Collage (..)
import Color
import String
import Window
import Graphics.Element (Element)
import Graphics.Collage (collage, textured, circle)
main : Element
main =
collage 800 600
[textured "http://placehold.it/200x200" (circle 200.0)]
import sys, os, glob
import readline
import pyaudio
import wave
from pydub import AudioSegment
from pydub.utils import get_player_name, make_chunks
CHUNK = 1024
@dy-dx
dy-dx / index.js
Created June 16, 2016 21:12
requirebin sketch
// Welcome! require() some modules from npm (like you were using browserify)
// and then hit Run Code to run your code on the right side.
// Modules get downloaded from browserify-cdn and bundled in your browser.
moment = require('moment')
a = moment('2013-01-30').add(1, 'months').calendar()
console.log(a)
# Copyright 2016 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
@dy-dx
dy-dx / kubedns-deployment.yaml
Last active October 6, 2016 19:32
kubedns add-on
# Copyright 2016 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
import React, { Component, PropTypes } from 'react';
export default function fuck(WrappedComponent) {
return class FuckedComponent extends Component {
constructor(...args) {
super(...args);
this.state = {};
}
@dy-dx
dy-dx / 32.asm
Created June 26, 2017 23:14 — forked from FiloSottile/32.asm
NASM Hello World for x86 and x86_64 Intel Mac OS X (get yourself an updated nasm with brew)
; /usr/local/bin/nasm -f macho 32.asm && ld -macosx_version_min 10.7.0 -o 32 32.o && ./32
global start
section .text
start:
push dword msg.len
push dword msg
push dword 1
mov eax, 4
@dy-dx
dy-dx / zipserver.js
Created October 5, 2017 23:07
async download bundler
const http = require('http');
const archiver = require('archiver');
const request = require('request');
const urls = [
'http://www.colorado.edu/conflict/peace/download/peace.zip',
'http://www.colorado.edu/conflict/peace/download/peace_essay.ZIP',
'http://www.colorado.edu/conflict/peace/download/peace_example.ZIP',
];