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
[Info - 18:31:44.474] Starting TS Server | |
[Info - 18:31:44.474] Using tsserver from: /home/%USER_PROFILE%/.vscode-server/bin/%UNIQUE_ID%/extensions/node_modules/typescript/lib/tsserver.js | |
[Info - 18:31:44.483] <syntax> Log file: /home/%USER_PROFILE%/.vscode-server/data/logs/20210916T133054/exthost2/vscode.typescript-language-features/tsserver-log-UE9MsV/tsserver.log | |
[Info - 18:31:44.483] <syntax> Forking... | |
[Info - 18:31:44.510] <syntax> Starting... | |
[Info - 18:31:44.513] <semantic> Log file: /home/%USER_PROFILE%/.vscode-server/data/logs/20210916T133054/exthost2/vscode.typescript-language-features/tsserver-log-NSr4GX/tsserver.log | |
[Info - 18:31:44.513] <semantic> Forking... | |
[Info - 18:31:44.530] <semantic> Starting... | |
[Info - 18:32:24.142] TSServer exited. Signal: SIGABRT | |
[Info - 18:32:24.143] TSServer log file: /home/%USER_PROFILE%/.vscode-server/data/logs/20210916T133054/exthost2/vscode.typescript-language-features/tsserver-log-NSr4GX/tsserver.log |
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
{ | |
"short_name": "C.D.E.", | |
"name": "Code.Develop.Engineer.", | |
"icons": [ | |
{ | |
"src": "/images/Code-Develop-Engineer-ICON.192x192.png", | |
"type": "image/png", | |
"sizes": "192x192" | |
}, | |
{ |
This file has been truncated, but you can view the full file.
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
{ | |
"nodes": [ | |
{ | |
"id": 1, | |
"callFrame": { | |
"functionName": "(root)", | |
"scriptId": "0", | |
"url": "", | |
"lineNumber": -1, | |
"columnNumber": -1 |
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
Show hidden characters
{ | |
// If true, any subfolders containing a .git file will be ignored when searching. | |
"todo-tree.filtering.ignoreGitSubmodules": true, | |
// Add VSCode's `files.exclude` and/or `search.exclude` list to the ignored paths. | |
// - none: Don't used any built in excludes | |
// - file excludes: Use the Files:Exclude setting | |
// - search excludes: Use the Search:Exclude setting | |
// - file and search excludes: Use the Files:Exclude and the Search:Exclude setting | |
"todo-tree.filtering.useBuiltInExcludes": "file and search excludes", | |
// Set to true to enable automatic updates when files in the workspace are created, changed or deleted. |
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
{ | |
"githubPullRequests.queries": [ | |
{ | |
"label": "Created By Me", | |
"query": "state:open type:pr author:${user} sort:created-desc" | |
}, | |
{ | |
"label": "Assigned To Me", | |
"query": "state:open type:pr assignee:${user} sort:updated-desc" | |
}, |
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
application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rdf+xml application/rss+xml application/schema+json application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-javascript application/x-web-app-manifest+json application/xhtml+xml application/xml font/eot font/opentype image/bmp image/svg+xml image/vnd.microsoft.icon image/x-icon text/cache-manifest text/css text/html text/javascript text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy text/xml |
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
#!/usr/bin/env bash | |
# $NVM_DIR/default-packages | |
@cloudflare/wrangler | |
@mapbox/node-pre-gyp | |
bit | |
corepack | |
express-generator@4 | |
gatsby-cli |
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
// Although cards can support multiple actions, UI controls, and an overflow menu, use restraint and remember that cards are entry points to more complex and detailed information. // | |
// @ts-nocheck | |
import React from 'react' | |
import { makeStyles } from '@material-ui/core/styles' | |
import { | |
Box, | |
Card, | |
CardActions, | |
CardContent, | |
CardActionArea, |
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
{ | |
// Controls whether bracket pair colorization is enabled or not. Use 'workbench.colorCustomizations' to override the bracket highlight colors. | |
"editor.bracketPairColorization.enabled": true, | |
// Controls whether the editor should render indent guides. | |
"editor.guides.indentation": true, | |
// Controls whether bracket pair guides are enabled or not. | |
// - true: Enables bracket pair guides. | |
// - active: Enables bracket pair guides only for the active bracket pair. | |
// - false: Disables bracket pair guides. | |
"editor.guides.bracketPairs": "active", |
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
[wsl2] | |
# An absolute Windows path to a custom Linux kernel. | |
# kernel=The Microsoft built kernel provided inbox (default) | |
# How much memory to assign to the WSL 2 VM, this can be set as whole numbers using GB or MB. Default is 50% of total memory on Windows or 8GB, whichever is less; formerly 80% of total memory on Windows. | |
memory=5700MB | |
# How many logical processors to assign to the WSL 2 VM. | |
# processors=The same number of logical processors on Windows (default) |