Skip to content

Instantly share code, notes, and snippets.

@jonahlyn
jonahlyn / gist:3210581
Created July 30, 2012 21:47
Udacity's wrapper functions for matplotlib
from matplotlib import pyplot
from numpy import arange
import bisect
def scatterplot(x,y):
pyplot.plot(x,y,'b.')
pyplot.xlim(min(x)-1,max(x)+1)
pyplot.ylim(min(y)-1,max(y)+1)
pyplot.show()
@jonahlyn
jonahlyn / fouc.css
Created March 29, 2012 17:07
Prevent FOUC
.js #someelement { display: none; }
@jonahlyn
jonahlyn / jsonip.html
Created February 28, 2012 15:50
Get IP/Host with PHP & JSON
<div id="ipinfo"></div>
<script>
function getip(json){
var info, container = document.getElementById('ipinfo');
try {
info = jQuery.parseJSON(json);
container.innerHTML = info.ip + "/" + info.host;
} catch(e) {
@jonahlyn
jonahlyn / jquery.pluginName.js
Created February 21, 2012 16:10
jQuery Plugin Boilerplate
/**
* Plug-in: pluginName
* @author: [email protected]
*
*/
(function($){
$.fn.pluginName = function(options) {
var opts = $.extend({}, $.fn.pluginName.defaults, options);
@jonahlyn
jonahlyn / nav.css
Created January 12, 2012 00:06
Styles for a left navigation bar
ul.slidemenu li {
padding: 0;
background: 0 none;
border-bottom: 1px solid #DCDCDC;
border-top: 1px solid #FFFFFF;
}
ul.slidemenu li a, ul.slidemenu li a:link, ul.slidemenu li a:visited {
background-image: linear-gradient(left , rgb(240,240,240) 0%, rgb(255,255,255) 32%);
@jonahlyn
jonahlyn / dabblet.css
Created December 16, 2011 16:33
Line to separate content sections with CSS3
/**
* Line to separate content sections with CSS3
*/
background-color: #fff;
background-image:
linear-gradient(top, #fff 70px, transparent 70px),
linear-gradient(top, #fff 1px, transparent 1px),
linear-gradient(0deg, transparent 240px, #5e5d60 240px, #5e5d60 244px, transparent 244px, transparent);
background-size: 100%, 100% 2px, 100%;
min-height:100%;
@jonahlyn
jonahlyn / dabblet.css
Created December 16, 2011 16:15
Repeating Background
/**
* Repeating Background
*/
background-color: #fff;
background: linear-gradient(top, #fff 50%, #5e5d60 50%);
background-size: 5px 5px;
background-position: 0 0, 0 0;
min-height:100%;
@jonahlyn
jonahlyn / fiddle.css
Created November 8, 2011 02:48
De-constructing the Backbone Todo List App
body {
padding: 5px;
}
input {
width: 200px;
}
#todo-list {
margin-top: 10px;
}
#todo-list li {
new gist
#expandnav {
margin: 0;
padding: 0;
}
#expandnav > li {
margin-bottom: 10px;
}
#expandnav li {