Skip to content

Instantly share code, notes, and snippets.

View quephird's full-sized avatar

danielle quephird

View GitHub Profile
(ns quiltest.core
(:require
[quil.core :as q]
[quil.applet :as qa]
)
(:import
[javax.swing JFrame])
)
@lexi-lambda
lexi-lambda / Pi.hs
Last active January 21, 2016 02:46
Crazier way to compute pi based on random number generation (thanks to @quephird’s https://gist.github.com/quephird/039b0254a5a5696346ae)
module Pi where
import Data.List (genericLength)
import Control.Arrow (Arrow, (<<<), (***), arr)
import System.Random (newStdGen, randoms)
type Point a = (a, a)
chunk2 :: [a] -> [(a, a)]
chunk2 [] = []
@emceeaich
emceeaich / Things_that_make_everything_better.txt
Last active December 15, 2015 16:50 — forked from quephird/Things_that_make_everything_better.txt
Things that make everything better
Things that make everything better:
• 💙 Blue
• 🍫 Chocolate
• ☕️ Coffee
• 👭 Cynthia
• 🎸 Shoegaze
• () JavaScript
• 👗 Dresses
• ❌ Cancelled meetings

#RIOT CODE GRRRL MANIFESTO #####(based on the original RIOT GRRRL MANIFESTO)

BECAUSE us girls crave apps and games and websites that speak to US that WE feel included in and can understand in our own ways.

BECAUSE we wanna make it easier for girls to see/hear each other's work so that we can share strategies and criticize-applaud each other.

BECAUSE we must take over the means of production in order to create our own revolution.

BECAUSE viewing our work as being connected to our girlfriends-politics-real lives is essential if we are gonna figure out how we are doing impacts, reflects, perpetuates, or DISRUPTS the status quo.

@natw
natw / fizzbuzz.py
Created November 15, 2012 16:22
best fizzbuzz
import random
for i in range(0, 100):
if not i % 15:
random.seed(1178741599)
print [i+1, "Fizz", "Buzz", "FizzBuzz"][random.randint(0,3)]