Skip to content

Instantly share code, notes, and snippets.

View msociety's full-sized avatar

Miguel Molina msociety

  • Alicante
View GitHub Profile

Reach UI Philosophy

Reach UI is an accessible foundation for React applications and design systems.

The three equally important goals are to be:

  • Accessible
  • Composable
  • Stylable
@alexhawkins
alexhawkins / binaryTree.js
Last active January 5, 2025 14:48
Binary Trees and Tree Traversal
'use strict';
function BinarySearchTree() {
this.root = null;
}
BinarySearchTree.prototype.makeNode = function(value) {
var node = {};
node.value = value;
node.left = null;
@ericelliott
ericelliott / essential-javascript-links.md
Last active March 22, 2025 17:28
Essential JavaScript Links
@davidsp
davidsp / Object patterns
Last active August 29, 2015 13:57
List of Object patterns for js (extracted from The Principles of Object-Oriented JavaScript, by Nicholas C.Zakas)
//Object patterns extracted from the 6th chapter of The Principles of Object-Oriented JavaScript, by Nicholas C.Zakas.
//http://shop.oreilly.com/product/9781593275402.do
@jonschlinkert
jonschlinkert / markdown-cheatsheet.md
Last active April 2, 2025 07:29
A better markdown cheatsheet.