I hereby claim:
- I am jakealbaugh on github.
- I am jakealbaugh (https://keybase.io/jakealbaugh) on keybase.
- I have a public key ASB4xuM95J1791R5Aa_5_NEY6yngdUFEyL9J5Gq66mld0Qo
To claim this, I am signing this object:
/* | |
create an accessible button component using react and typescript with | |
variant, size, element, aria label, and optional href props | |
*/ | |
import React, { ButtonHTMLAttributes } from "react"; | |
type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & { | |
variant?: "primary" | "secondary" | "tertiary"; | |
size?: "small" | "medium" | "large"; |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
"stop_words": [ | |
"a", | |
"about", | |
"above", | |
"across", | |
"after", | |
"afterwards", | |
"again", | |
"against", |
What do you call... | _ |
---|---|
a presidential lacrosse player's pig's social network | a bro's ham's linkedin |
an online store for throat lozenges | cough eshop |
it when two people crouched fight over tea | chai knees feud |
mucus that floats | phlegm buoyant |
the space between a soul singer's intervals | throatis leading |
your favorite knife after it's been knighted? | Sir Rated |
| Did you hear about... | _ |
# Add these methods to your ApplicationController. Then, any controller | |
# that inherits from it will have these methods and can programmatically | |
# determine what filters it has set. | |
class ApplicationController < ActionController::Base | |
def self.filters(kind = nil) | |
all_filters = _process_action_callbacks | |
all_filters = all_filters.select{|f| f.kind == kind} if kind | |
all_filters.map(&:filter) | |
end |
// | |
// greet paul | |
greeting("Paul"); | |
// | |
// greeting method to take name and return a greeting | |
function greeting(subject) { | |