- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
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
function submitForm (event) { | |
event.preventDefault(); | |
console.log(`Form submitted!`); | |
const name = document.querySelector('[name]').value; | |
console.log(`The name is --> `, name); | |
// Do anything else you want here | |
this.reset(); // <-- Our *new* money line | |
} |
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
π Morning 296 commits βββββββββββββββββββββ 37.7% | |
π Daytime 343 commits βββββββββββββββββββββ 43.6% | |
π Evening 146 commits βββββββββββββββββββββ 18.6% | |
π Night 1 commits βββββββββββββββββββββ 0.1% |
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
π 2,196 Contributions in year 2020 | |
π¦ Used 302 MB in GitHub's Storage | |
π 67 Public Gists | |
π 4 Public Keys | |
π« Not opted to Hire |
I hereby claim:
- I am stephencweiss on github.
- I am stephenweiss (https://keybase.io/stephenweiss) on keybase.
- I have a public key whose fingerprint is 97A4 DED8 1B1A A21E 533A BF4B 39C6 60B6 BF04 72FF
To claim this, I am signing this object:
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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 Component from '@glimmer/component'; | |
export default class extends Component { | |
get title(){ | |
console.log({args: this.args.list}) | |
if (this.args.list.length === 0) { | |
return 'Empty List'; | |
} else if (this.args.list.length === 1) { | |
return '1 Unread'; | |
} else { |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
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 { map } from 'fp-ts/Record'; | |
import * as t from 'io-ts'; | |
export const StandardCodec = t.type({ fields: t.string }); | |
export type Standard = t.TypeOf<typeof StandardCodec>; | |
// export const OriginalCodec = t.type({ original: t.string }); | |
// export type Original = t.TypeOf<typeof OriginalCodec>; | |
export const partialRecord = <K extends string, T extends t.Any>( |
OlderNewer