This file contains 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
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() |
This file contains 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
.js #someelement { display: none; } |
This file contains 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
<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) { |
This file contains 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
/** | |
* Plug-in: pluginName | |
* @author: [email protected] | |
* | |
*/ | |
(function($){ | |
$.fn.pluginName = function(options) { | |
var opts = $.extend({}, $.fn.pluginName.defaults, options); |
This file contains 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
/** | |
* 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%; |
This file contains 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
/** | |
* 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%; |
This file contains 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
body { | |
padding: 5px; | |
} | |
input { | |
width: 200px; | |
} | |
#todo-list { | |
margin-top: 10px; | |
} | |
#todo-list li { |
This file contains 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
new gist |