This file contains hidden or 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
setcps (120/60/4) | |
-- drum patterns in do block | |
do | |
let drumz1 = every 4 (|> sound "drum") | |
$ sound "[drum <dr:2>] drum *2" | |
# gain 0.6 | |
# orbit 0 | |
let drumz2 = sound "[drum <dr:1>] drum [drum <techno:5>] drum /2" |
This file contains hidden or 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
type AutoComplete = | |
| 'astring' | |
| 'bstring' | |
| 'cstring' | |
| (string & {}) |
This file contains hidden or 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 LOG_LEVEL = { | |
DEBUG: "DEBUG", | |
WARNING: "WARNING", | |
ERROR: "ERROR", | |
} as const | |
type ObjectValues <T> = T[keyof T]; | |
type LogLevel = ObjectValues<typeof LOG_LEVEL> |
This file contains hidden or 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 swr = new Map; | |
const useSWR = (path, fetcher, cache) => { | |
let [data, update] = useState(null); | |
if (!swr.has(path) || swr.get(path) !== cache) { | |
fetcher(path).then(update, () => update(new Error(path))); | |
swr.set(path, cache); | |
} | |
const isError = data instanceof Error; | |
return { |
This file contains hidden or 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
// customer | |
import { put, call } from 'redux-saga/effects'; | |
const fetch = (url, data) => | |
window.fetch(url, { | |
body: JSON.stringify(data), | |
method: 'POST', | |
credentials: 'same-origin', | |
headers: { 'Content-Type': 'application/json' } |
This file contains hidden or 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
// customer | |
import { put, call } from 'redux-saga/effects'; | |
const fetch = (url, data) => | |
window.fetch(url, { | |
body: JSON.stringify(data), | |
method: 'POST', | |
credentials: 'same-origin', | |
headers: { 'Content-Type': 'application/json' } |
This file contains hidden or 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 from 'react'; | |
export const Appointment = ({customer: { firstName }}) => <div>{firstName}</div>; | |
import React from 'react'; | |
import ReactDOM from 'react-dom' | |
import { Appointment } from '../src/Appointment'; | |
let container; | |
let component; | |
const render = component => ReactDOM.render(component, container); | |
describe("Appointment", () => { |
This file contains hidden or 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
@media screen { | |
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,font,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video { | |
margin: 0; | |
padding: 0; | |
border: none; | |
vertical-align: baseline; | |
font-size: 100%; | |
background: 0 0 | |
} |
This file contains hidden or 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
@font-face { | |
font-family: Barlow Condensed; | |
src: url(/css/lib/fonts/barlowcondensed-bold.woff2) format("woff2"), url(/css/lib/fonts/barlowcondensed-bold.woff) format("woff"); | |
font-weight: 700; | |
font-style: normal; | |
} | |
:root { | |
--font-plain: Helvetica Neue, Helvetica, Arial, sans-serif; | |
--font-special: Barlow Condensed, Helvetica, sans-serif; | |
--font-mono: Menlo, Courier, Courier New, Andale Mono, monospace; |
This file contains hidden or 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
{"lastUpload":"2021-05-02T19:06:07.371Z","extensionVersion":"v3.4.3"} |
NewerOlder