- Mutual Benefit - Love's Crushing Diamond
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sonic Pi FizzBuzz by LindseyB | |
define :fizzbuzz do | |
sample :elec_fuzz_tom, rate: 1 | |
sample :ambi_soft_buzz, rate: 1 | |
sleep 1 | |
end | |
define :fizz do | |
sample :elec_fuzz_tom, rate: 2 | |
sleep 0.5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- "Hardcore tea action!" | |
- "Physics!" | |
- "Explosion sound!" | |
- "Over 15 achievements!" | |
- "Coming soon!" | |
- "Danger!" | |
- "M-M-M-Monster kill!" | |
- "Single player experience!" | |
- "The 2015's best tea simulation game!" | |
- "Probably at least an entire hour of gameplay!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// rainbow the main LED on twitter mention (just setup an IFTTT to trigger the publish of an even with "bloop") | |
void setup() { | |
Particle.subscribe("bloop", myHandler); | |
RGB.control(true); | |
} | |
void loop() { | |
//nothing to see here! | |
} |
#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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The following is a quick and dirty example of uploading to vimeo using ruby | |
# It assumes that you already have an access token for a user | |
require 'net/http' | |
require 'httparty' | |
ACCESS_TOKEN = "your access token here" | |
auth = "Bearer #{ACCESS_TOKEN}" | |
# get ticket |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Ada Lovelace is credited with writing the first program (one which calculated Bernoulli numbers) | |
-- Many years later the Ada programming language was created | |
-- | |
-- This Ada uses the following algorithm for computing Bernoulli numbers | |
-- (http://en.wikipedia.org/wiki/Bernoulli_number#Algorithmic_description) | |
with Ada.Text_IO; | |
use Ada.Text_IO; | |
with Ada.Float_Text_IO; -- in Ada Float IO is treated differently from text IO, same goes for integers | |
use Ada.Float_Text_IO; |