- style guide
- foundation
- ui kit
- buttons
- text fields
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"contents":{"editor":{"formatOnSave":true}},"overrides":[],"keys":["editor.formatOnSave"]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/** | |
* Find the greatest common divisor (GCD) of two positive integers. | |
* | |
* @param {number} a - The first integer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/** | |
* Count the number of anagrams in a list of words. | |
* | |
* An anagram is a word made up of the same letters as another word in the array (but not |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from "react"; | |
import { ANIMALS } from "@frontendmasters/pet"; | |
const SearchParams = () => { | |
// api limited to seattle and sf | |
const [location, setLocation] = useState("Seattle, WA"); | |
const [animal, setAnimal] = useState("dog"); | |
const [breed, setBreed] = useState(""); | |
return ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function Home(){ | |
"use strict"; | |
var startStopBtn; | |
var fibsList; | |
var worker; | |
document.addEventListener("DOMContentLoaded",ready,false); | |
I hereby claim:
- I am jackhowa on github.
- I am jackhowa (https://keybase.io/jackhowa) on keybase.
- I have a public key ASCUXVHzVA6AAyNB0dM69_Olu_PS8QZH-JkKOtnRDseuEgo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def main(): | |
portnames = ["PAN", "AMS", "CAS", "NYC", "HEL"] | |
# generate list of 1, 2, 3, 4 | |
check = range(1,5) | |
port1 = 0 | |
for port2 in range(1, 5): | |
for port3 in range(1, 5): | |
for port4 in range(1, 5): | |
for port5 in range(1, 5): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const MONTH_NAMES = [ | |
'January', | |
'February', | |
'March', | |
'April', | |
'May', | |
'June', | |
'July', | |
'August', | |
'September', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"eslint.alwaysShowStatus": true, | |
"eslint.format.enable": true, | |
"eslint.lintTask.enable": true, | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"[scss]": { | |
"editor.codeActionsOnSave": { |