Skip to content

Instantly share code, notes, and snippets.

View killshot13's full-sized avatar
Working remotely

Michael R. killshot13

Working remotely
View GitHub Profile
@killshot13
killshot13 / tsserver.ini
Last active September 16, 2021 23:38
ts-semantic-logfiles
[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
@killshot13
killshot13 / .webmanifest().json
Last active October 7, 2021 12:14
.webmanifest
{
"short_name": "C.D.E.",
"name": "Code.Develop.Engineer.",
"icons": [
{
"src": "/images/Code-Develop-Engineer-ICON.192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
@killshot13
killshot13 / cpuprofile.txt
Created October 14, 2021 19:21
GitHub.vscode-pull-request-github-unresponsive.cpuprofile.txt
This file has been truncated, but you can view the full file.
{
"nodes": [
{
"id": 1,
"callFrame": {
"functionName": "(root)",
"scriptId": "0",
"url": "",
"lineNumber": -1,
"columnNumber": -1
@killshot13
killshot13 / settings.jsonc
Last active January 12, 2023 19:21
todo-tree-config
{
// 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.
@killshot13
killshot13 / githubPullRequests.config.json
Last active January 21, 2022 04:53
githubPullRequests.config.json
{
"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"
},
@killshot13
killshot13 / gzip_cache.txt
Last active November 3, 2021 08:01
cPanel hotlink & cache/gzip extensions
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
@killshot13
killshot13 / default-packages.sh
Last active June 20, 2022 08:20
Global npm package list
#!/usr/bin/env bash
# $NVM_DIR/default-packages
@cloudflare/wrangler
@mapbox/node-pre-gyp
bit
corepack
express-generator@4
gatsby-cli
@killshot13
killshot13 / MuiGradientCardExample.jsx
Last active January 12, 2022 06:31
Demonstrates how the Card component popularized by Material-UI can be enhanced by adding a fixed gradient background. It spices up the appearance and also creates a cool parallax effect.
// 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,
@killshot13
killshot13 / settings.jsonc
Last active December 25, 2024 05:11
vscode-colorized-brackets
{
// 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",
@killshot13
killshot13 / .wslconfig
Last active September 4, 2024 12:09
My personal configuration files [.wslconfig & wsl.conf] for Windows Subystem for Linux 2. These example do contain all of the most recent options for said files, but do not represent the default values in each situation. (asterisk = only available on Win 11)
[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)