Skip to content

Instantly share code, notes, and snippets.

View laurakelly's full-sized avatar

Laura Kelly laurakelly

View GitHub Profile
@laurakelly
laurakelly / gist:758b177a071521c29800
Last active August 29, 2015 14:17
Font Awesome Stacked Plus and Circle
[:span.fa-stack.circle-plus-light
[:i.fa.fa-circle-thin.fa-stack-2x]
[:i.fa.fa-plus.fa-stack-1x]]
@laurakelly
laurakelly / flux_links.md
Last active August 29, 2015 14:06
Examples of Facebook Flux Architecture
@laurakelly
laurakelly / index.html
Last active January 24, 2024 15:01
Connecting Two Points with a Line in D3.js
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="graph">
<h1>Connecting Two Points with a Line in D3.js</h1>
</div>
@laurakelly
laurakelly / also python_nums
Created September 1, 2012 07:51
also print odd numbers in python
print range(1, 100, 2)
@laurakelly
laurakelly / python_nums
Created September 1, 2012 07:51
print odd numbers in python
for number in range(0, 100):
if not number % 2 == 0:
print number
@laurakelly
laurakelly / java_nums
Created September 1, 2012 07:50
print odd numbers in java
package main;
public class OddNumbers {
public static void main(String[] args){
for (int number = 0; number < 100; number++){
if (number % 2 != 0) {
System.out.println(number);
}
}
}