Skip to content

Instantly share code, notes, and snippets.

View julian-boolean's full-sized avatar

Julian Raya julian-boolean

View GitHub Profile
/*Indent everything under h1,h2,h3 and h4 tags with indent width relative to order of headers.
<h1>ffoooo</h1>
<p> stuff
<pre>
<h2>
<p> level 2 stuff
<h3>
<h4>level 3 stuff
<p> level 4 stuff.
<h3>
@julian-boolean
julian-boolean / README.md
Last active August 29, 2015 14:26
silhouette vs wiggle

silhouette vs wiggle

@julian-boolean
julian-boolean / index.html
Last active January 2, 2016 17:59
Rickshaw.Graph.RangeSlider.Preview bug
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/rickshaw.css">
<style> body{ margin: 10px; padding: 0 } </style>
</head>
<body>
<div id="dowChart"></div>
@julian-boolean
julian-boolean / rickshawResize.js
Last active December 7, 2022 17:49
dynamically resize rickshaw chart.
$(window).on('resize', function(){
graph.configure({
width: window.innerWidth - 20,
height: window.innerHeight - 20
});
graph.render();
});