- Standard GitHub template for SPAs
- Time calculator
- Headless blog CMS
- Lightweight Kanban/Scrum app
- Planning poker app
-
- Programming language
- Purely functional while allowing local mutation
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
module.exports = { | |
extends: 'eslint:recommended', | |
env: { | |
es2021: true, | |
node: true, | |
amd: true | |
}, | |
rules: { | |
'arrow-parens': ['warn', 'as-needed'], | |
'comma-dangle': ['warn', 'never'], |
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
{ | |
"arrowParens": "avoid", | |
"trailingComma": "none", | |
"singleQuote": true, | |
"printWidth": 100 | |
} |
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
module.exports = { | |
extends: 'eslint:recommended', | |
plugins: ['plugin:vue/vue3-recommended', 'eslint:recommended'], | |
env: { | |
es2021: true, | |
browser: true | |
}, | |
rules: { | |
'arrow-parens': ['warn', 'as-needed'], | |
'comma-dangle': ['warn', 'never'], |
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
:root { | |
--bg0_h: #1d2021; | |
--bg0_m: #282828; | |
--bg0_s: #32302f; | |
--bg1: #3c3836; | |
--bg2: #504945; | |
--bg3: #665c54; | |
--bg4: #7c6f64; | |
--gray: #928374; | |
--fg4: #a89984; |
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 unthrow<Fn extends (...args: any) => unknown, Err = Error>(fn: Fn) { | |
type In = Parameters<Fn>; | |
type Out = | |
| { ok: true; data: ReturnType<Fn> } | |
| { ok: false; error: Err }; | |
return (...args: In): Out => { | |
try { | |
return { ok: true, data: fn(...args) as ReturnType<Fn>}; | |
} catch (e) { |
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
{ | |
"global": { | |
"ask_for_confirmation_before_quitting": true, | |
"check_for_updates_on_startup": false, | |
"show_in_menu_bar": true, | |
"show_profile_name_in_menu_bar": false, | |
"unsafe_ui": false | |
}, | |
"profiles": [ | |
{ |