Skip to content

Instantly share code, notes, and snippets.

View henrycatalinismith's full-sized avatar

Henry Catalini Smith henrycatalinismith

View GitHub Profile
pico-8 cartridge // http://www.pico-8.com
version 16
__lua__
--------------------------------
-- gameloop --------------------
function _init()
poke(0x5f2d, 1)
actions.reset()
end
node_modules/@types/react-test-renderer/index.d.ts(45,27): error TS2314: Generic type 'ReactElement<P>' requires 1 type argument(s).
node_modules/@types/react-test-renderer/index.d.ts(46,25): error TS2314: Generic type 'ReactElement<P>' requires 1 type argument(s).
node_modules/@types/react-test-renderer/index.d.ts(51,29): error TS2314: Generic type 'ReactElement<P>' requires 1 type argument(s).
node_modules/@types/react-test-renderer/index.d.ts(53,37): error TS2314: Generic type 'ReactElement<P>' requires 1 type argument(s).
node_modules/@types/react/index.d.ts(2737,19): error TS2320: Interface 'Element' cannot simultaneously extend types 'ReactElement<any, any>' and 'ReactElement<any>'.
Named property 'type' of types 'ReactElement<any, any>' and 'ReactElement<any>' are not identical.
node_modules/@types/react/index.d.ts(2738,19): error TS2320: Interface 'ElementClass' cannot simultaneously extend types 'Component<any, {}, any>' and 'Component<any, {}, any>'.
Named property 'props' of types 'Component<an
@henrycatalinismith
henrycatalinismith / init.lua
Last active November 14, 2022 19:22
init.lua
-- 💾 cosy 1 file nvim cfg --
-- 🧙 drag+ drop install --
-- 📦 0 package management --
--------------------------------
-- plugins ---------------------
--------------------------------
local plugins = {}
@henrycatalinismith
henrycatalinismith / keybindings.json
Last active January 30, 2024 18:48
vscode config
[
{
"key": "cmd+up",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "cmd+right",
"command": "workbench.action.terminal.toggleTerminal",
"when": "!terminalFocus"
@henrycatalinismith
henrycatalinismith / settings.json
Created January 30, 2024 18:52
VSCode Settings
{
"[ruby]": {
"editor.defaultFormatter": "ruby-syntax-tree.vscode-syntax-tree",
"editor.formatOnSave": true
},
"codesnap.showLineNumbers": false,
"diffEditor.renderSideBySide": false,
"breadcrumbs.enabled": false,
"editor.autoClosingBrackets": "never",
"editor.autoClosingDelete": "never",
@henrycatalinismith
henrycatalinismith / keybindings.json
Created January 30, 2024 18:53
VSCode Keybindings
[
{
"key": "cmd+up",
"when": "terminalFocus",
"command": "workbench.action.focusActiveEditorGroup"
},
{
"key": "cmd+right",
"when": "!terminalFocus",
"command": "workbench.action.terminal.toggleTerminal"
@henrycatalinismith
henrycatalinismith / bluesunrise.zsh-theme
Created February 25, 2024 14:54
bluesunrise.zsh-theme
# bluesunrise theme for oh-my-zsh
# A copy of the sunrise theme that ships in the oh-my-zsh defaults, except with the yellow replaced with blue
# Color shortcuts
R=$fg_no_bold[red]
G=$fg_no_bold[green]
M=$fg_no_bold[magenta]
Y=$fg_no_bold[yellow]
B=$fg_no_bold[blue]
RESET=$reset_color
@henrycatalinismith
henrycatalinismith / brewfile
Last active February 28, 2024 15:22
brewfile
tap "homebrew/core"
tap "homebrew/bundle"
tap "homebrew/cask"
brew "atuin"
brew "chezmoi"
brew "cowsay"
brew "ffmpeg"
brew "gh"
brew "git-extras"