Skip to content

Instantly share code, notes, and snippets.

anonymous
anonymous / Jasny-Bootstrap-Off-Canvas-Example.markdown
Created February 13, 2015 14:54
Jasny-Bootstrap Off Canvas Example

Jasny-Bootstrap Off Canvas Example

Port of the Jasny-Bootstrap Off Canvas Example

All you really need to make it work besides your required Bootstrap CSS is the Off Canvas CSS file and the Offcanvas.js and Transition.js files (Transition.js only if you want transitions)

A Pen by tryless on CodePen.

License.

@ralphcrisostomo
ralphcrisostomo / array_dupplicate_counter.js
Created July 19, 2012 07:43
Javascript: Count duplicates in an array
/**
Problem:
You have a javascript array that likely has some duplicate values and you would like a count of those values.
Solution:
Try this schnippet out.
*/
@trevmex
trevmex / bst.js
Created February 11, 2011 05:38
A simple binary search tree in JavaScript
/*
* File: bst.js
*
* A pure JavaScript implementation of a binary search tree.
*
*/
/*
* Class: BST
*