Skip to content

Commit

Permalink
Updated competitive cs sites, vscode settings, 2024 todo
Browse files Browse the repository at this point in the history
  • Loading branch information
Xithrius committed Feb 18, 2024
1 parent 0ecffa9 commit f40777d
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 21 deletions.
Binary file modified site/bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions site/content/posts/competitive-programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ Places to practice competitive programming, and/or to prepare for programming in
- [Codewars](https://www.codewars.com/)
- [Kattis](https://open.kattis.com/)
- [Hackerrank](https://www.hackerrank.com/)
- [CSES](https://cses.fi/)
46 changes: 28 additions & 18 deletions site/content/posts/vscode-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,15 @@ Below is the JSON file for general settings, and the extensions from above. I us
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "One Dark Pro Flat",
"workbench.editor.wrapTabs": false,
"workbench.panel.defaultLocation": "right",
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromCodeNavigation": true,
"workbench.colorCustomizations": {
"editorInlayHint.background": "#00000000",
"editorInlayHint.foreground": "#979696"
},
"workbench.sideBar.location": "right",
"debug.allowBreakpointsEverywhere": true,
"debug.showBreakpointsInOverviewRuler": true,
"explorer.confirmDragAndDrop": false,
Expand All @@ -79,33 +88,19 @@ Below is the JSON file for general settings, and the extensions from above. I us
"files.autoSave": "afterDelay",
"editor.renderWhitespace": "none",
"editor.bracketPairColorization.enabled": true,
"workbench.startupEditor": "none",
"diffEditor.ignoreTrimWhitespace": false,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromCodeNavigation": true,
"zenMode.fullScreen": false,
"zenMode.hideTabs": false,
"zenMode.hideLineNumbers": false,
"eslint.validate": ["typescript", "typescriptreact"],
"typescript.inlayHints.variableTypes.enabled": true,
"javascript.inlayHints.variableTypes.enabled": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"search.exclude": {
"**/dist/**": true,
"**/node_modules/**": true
},
"typescript.workspaceSymbols.scope": "currentProject",
"search.useGlobalIgnoreFiles": true,
"editor.inlayHints.fontSize": 13,
"workbench.colorCustomizations": {
"editorInlayHint.background": "#00000000",
"editorInlayHint.foreground": "#979696"
},
"window.menuBarVisibility": "toggle",
"editor.cursorSmoothCaretAnimation": "on",
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"files.exclude": {
"**/__pycache__": true,
"**/.idea": true,
Expand All @@ -114,13 +109,28 @@ Below is the JSON file for general settings, and the extensions from above. I us
"**/node_modules": true,
"**/.next": true,
"**/coverage": true,
"**/.swc": true
"**/.swc": true,
"**/.mypy_cache": true,
"**/.ruff_cache": true,
"**/.pdm-python": true
},
"telemetry.telemetryLevel": "off",
"workbench.sideBar.location": "right",
"workbench.activityBar.visible": false,
"[cpp]": {
"editor.defaultFormatter": "xaver.clang-format"
}
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"python.testing.pytestArgs": ["."],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.languageServer": "Pylance",
"window.menuBarVisibility": "toggle",
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml"
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"python.analysis.autoFormatStrings": true,
"window.density.editorTabHeight": "compact"
}
```
6 changes: 4 additions & 2 deletions site/content/todo/2024.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
},
{
"desc": "Get Ordis (Warframe market bot) into a production state",
"url": "https://github.com/Xithrius/Ordis"
"url": "https://github.com/Xithrius/Ordis",
"done": true
},
{
"desc": "Get Xythrion (General utility bot) into a production state",
"url": "https://github.com/Xithrius/Xythrion"
"url": "https://github.com/Xithrius/Xythrion",
"done": true
},
{
"desc": "Adafruit Metro ESP32-S2 to provide temperature readings (through Circuit Python)"
Expand Down
3 changes: 2 additions & 1 deletion site/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default defineNuxtConfig({
'@nuxt/content',
'@vueuse/nuxt',
'@vueuse/motion/nuxt',
'@nuxtjs/color-mode'
],
ui: {
icons: ['heroicons', 'lucide'],
Expand Down Expand Up @@ -53,7 +54,7 @@ export default defineNuxtConfig({
globalName: '__NUXT_COLOR_MODE__',
componentName: 'ColorScheme',
classPrefix: '',
classSuffix: '-mode',
classSuffix: '',
storageKey: 'nuxt-color-mode',
},
})
1 change: 1 addition & 0 deletions site/tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ module.exports = {
},
},
plugins: [require('@tailwindcss/typography')],
darkMode: 'class'
} satisfies Config

0 comments on commit f40777d

Please sign in to comment.