Skip to content

Instantly share code, notes, and snippets.

View kacieh80's full-sized avatar

Kacie Houser kacieh80

  • 07:58 (UTC -05:00)
View GitHub Profile
@gaearon
gaearon / modern_js.md
Last active April 18, 2024 15:01
Modern JavaScript in React Documentation

If you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:

  • We define variables with let and const statements. For the purposes of the React documentation, you can consider them equivalent to var.
  • We use the class keyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value of this in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav
#!/usr/bin/env python3
import argparse
import string
TABLE = {letter: f':parrot-{letter}:' for letter in string.ascii_lowercase}
arguments = argparse.ArgumentParser(description="Party parrot text-o-matic.")
arguments.add_argument('words', metavar='TEXT', type=str, nargs='+',
help="text to make badass")
@kacieh80
kacieh80 / startup.py
Created December 24, 2015 09:20
Pretty Flask like routes in Falcon python framework
import os
import pkgutil
class route(object):
""" Decorates RequestHandlers and builds a list of routes """
_routes = []
def __init__(self, uri):