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
⨯ node_modules/@emotion/react/dist/emotion-element-c16c303e.esm.js (14:41) @ React | |
⨯ createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more: https://nextjs.org/docs/messages/context-in-server-component | |
at eval (webpack-internal:///(rsc)/./node_modules/@emotion/react/dist/emotion-element-c16c303e.esm.js:35:92) | |
at (rsc)/./node_modules/@emotion/react/dist/emotion-element-c16c303e.esm.js (/Users/henrycatalinismith/zetkin/app.zetkin.org/.next/server/vendor-chunks/@emotion.js:210:1) | |
at __webpack_require__ (/Users/henrycatalinismith/zetkin/app.zetkin.org/.next/server/webpack-runtime.js:33:42) | |
at eval (webpack-internal:///(rsc)/./node_modules/@emotion/styled/base/dist/emotion-styled-base.esm.js:9:72) | |
at (rsc)/./node_modules/@emotion/styled/base/dist/emotion-styled-base.esm.js (/Users/henrycatalinismith/zetkin/app.zetkin.org/.next/server/vendor-chunks/@emotion.js:250:1) | |
at __webpack_require__ (/Users/henrycatalinismith/zetkin/ |
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
tap "homebrew/core" | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
brew "atuin" | |
brew "chezmoi" | |
brew "cowsay" | |
brew "ffmpeg" | |
brew "gh" | |
brew "git-extras" |
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
# 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 |
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
[ | |
{ | |
"key": "cmd+up", | |
"when": "terminalFocus", | |
"command": "workbench.action.focusActiveEditorGroup" | |
}, | |
{ | |
"key": "cmd+right", | |
"when": "!terminalFocus", | |
"command": "workbench.action.terminal.toggleTerminal" |
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
{ | |
"[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", |
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
[ | |
{ | |
"key": "cmd+up", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "cmd+right", | |
"command": "workbench.action.terminal.toggleTerminal", | |
"when": "!terminalFocus" |
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
-- 💾 cosy 1 file nvim cfg -- | |
-- 🧙 drag+ drop install -- | |
-- 📦 0 package management -- | |
-------------------------------- | |
-- plugins --------------------- | |
-------------------------------- | |
local plugins = {} |
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
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 |
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
pico-8 cartridge // http://www.pico-8.com | |
version 16 | |
__lua__ | |
-------------------------------- | |
-- gameloop -------------------- | |
function _init() | |
poke(0x5f2d, 1) | |
actions.reset() | |
end |