20250304
0730 起床
信じられないくらい二日酔い
もういい大人なので翌日に影響が出るような飲み方をやめたい
https://scrapbox.io/files/67c66dd07c5f0bb52cab3286.png
札幌サワー 氷彩、コイツのせい
ウマすぎた
スープにハマりそう
"Do you know ~ ?" の使い方知らなかった
技術選定とは経営である
#CSS の @media screen and (max-width: 600px) の意味をいい加減に覚えたい https://scrapbox.io/files/67c675c4ee59429001980fea.png
いつもありがとう ChatGPT クン
code:cheat-sheet.css
.〇〇 {
display
flex
grid
justify-content
align-items
order /* 区切り線 */
position
top → right → bottom → left
z-index /* 区切り線 */
transform
overflow → overflow-x → overflow-y
visibility
table-layout
width min → max /* 区切り線 */
height min → max
margin
margin → top → right → bottom → left /* 区切り線 */
padding
padding → top → right → bottom → left
border-collapse /* 区切り線 */
border
border-width
border-style
border-color
border-radius → top-left-radius → top-right-radius → bottom-right-radius → bottom-left-radius
box-shadow
background /* 区切り線 */
background-color
background-image
background-repeat
background-position
background-size
object-fit /* 区切り線 */
object-position
opacity /* 区切り線 */
color
font /* 区切り線 */
font-weight
font-size
font-family
text-align
text-decoration
white-space
vertical-align
line-height /* 区切り線 */
letter-spacing
columns
list-style
content /* 区切り線 */
pointer-events
cursor
transition /* 区切り線 */
transition-delay
animation
}
@tsuna__sa: 親に「東大受かったら東大行くの? 文IIIなの考えると早稲田商の方が就職良くない?」 ってとんでもないこと言われて泣きそう 前々職の偉い人で一橋蹴って早稲田入った人いてドン引きしてたけどこういうことかも
code:json
{
// ========== Visuals ==========
"editor.cursorSmoothCaretAnimation": "on",
"editor.fontFamily": "Input Mono, monospace",
"editor.guides.bracketPairs": "active",
"editor.lineNumbers": "interval",
"editor.renderWhitespace": "boundary",
"window.autoDetectColorScheme": true,
"workbench.preferredLightColorTheme": "Vitesse Light",
"workbench.preferredDarkColorTheme": "Gruvbox Material Dark",
"workbench.editor.tabActionLocation": "left",
"workbench.fontAliasing": "antialiased",
"workbench.list.smoothScrolling": true,
"workbench.iconTheme": "catppuccin-macchiato",
"workbench.sideBar.location": "right",
"workbench.startupEditor": "none",
"workbench.tree.expandMode": "singleClick",
"workbench.tree.indent": 8,
"window.newWindowDimensions": "maximized",
// ========== Editor ==========
"diffEditor.ignoreTrimWhitespace": false,
"editor.wordSeparators": "`~!@#%^&*()=+{}\\|;:'\",.<>/?", "editor.find.addExtraSpaceOnTop": false,
"editor.inlineSuggest.enabled": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.tabSize": 2,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.stickyScroll.enabled": true,
"editor.hover.sticky": true,
"editor.codeActionsOnSave": {
"source.fixAll": "never",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"editor.linkedEditing": true,
"html.autoClosingTags": true,
"javascript.autoClosingTags": true,
"typescript.autoClosingTags": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.simpleDialog.enable": true,
"git.autofetch": true,
"git.untrackedChanges": "separate",
"scm.diffDecorationsGutterWidth": 2,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontWeight": "300",
"terminal.integrated.persistentSessionReviveProcess": "never",
"terminal.integrated.tabs.enabled": true,
"workbench.editor.closeOnFileDelete": true,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.perEditorGroup": true,
"workbench.editor.limit.value": 5,
// ========== Be Careful To Exclude ==========
"search.exclude": {
// "**/*.snap": true,
"**/*.svg": true,
"**/.git": true,
// "**/.github": false,
// "**/.nuxt": true,
// "**/.output": true,
"**/.pnpm": true,
"**/.vscode": true,
"**/.yarn": true,
// // "**/assets": true,
// "**/bower_components": true,
// "**/dist/**": true,
// "**/logs": true,
"**/node_modules": true,
// "**/out/**": false,
"**/package-lock.json": true,
"**/pnpm-lock.yaml": true,
// "**/public": true,
// "**/temp": true,
"**/yarn.lock": true,
"**/CHANGELOG*": true,
"**/LICENSE*": true,
".tours": true,
},
// ========== Global Level Config, needs to put in User Settings ==========
"window.dialogStyle": "custom",
"window.nativeTabs": true, // this is great, macOS only
"window.title": "${rootName}", // this make tabs more readable
"window.titleBarStyle": "custom",
"extensions.autoUpdate": "onlyEnabledExtensions",
// ========== Extension configs ==========
"emmet.showSuggestionsAsSnippets": true,
"emmet.triggerExpansionOnTab": false,
"errorLens.enabledDiagnosticLevels": [
"warning",
"error"
],
"errorLens.excludeBySource": [
"cSpell",
"Grammarly",
"eslint"
],
"eslint.codeAction.showDocumentation": {
"enable": true
},
"eslint.quiet": true,
// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off" },
{ "rule": "format/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
{ "rule": "*-order", "severity": "off" },
{ "rule": "*-dangle", "severity": "off" },
{ "rule": "*-newline", "severity": "off" },
{ "rule": "*quotes", "severity": "off" },
{ "rule": "*semi", "severity": "off" }
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml",
"toml"
],
"cSpell.allowCompoundWords": true,
"cSpell.language": "en,en-US",
"css.lint.hexColorLength": "ignore",
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.menus": {
"editor": {
"blame": false,
"clipboard": true,
"compare": true,
"history": false,
"remote": false
},
"editorGroup": {
"blame": true,
"compare": false
},
"editorTab": {
"clipboard": true,
"compare": true,
"history": true,
"remote": true
},
"explorer": {
"clipboard": true,
"compare": true,
"history": true,
"remote": true
},
"scm": {
"authors": true
},
"scmGroup": {
"compare": true,
"openClose": true,
"stash": true
},
"scmGroupInline": {
"stash": true
},
"scmItem": {
"clipboard": true,
"compare": true,
"history": true,
"remote": false,
"stash": true
}
},
"iconify.annotations": true,
"iconify.inplace": true,
"svg.preview.mode": "svg",
}
全然整理できていない
profile 機能とかも使ってみたい