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

Keybase proof

I hereby claim:

  • I am killshot13 on github.
  • I am killsh0t_13 (https://keybase.io/killsh0t_13) on keybase.
  • I have a public key ASBjQ84QUPSvrigNuj4yUw-LyW3308svcrDkCk2iZl4Lgwo

To claim this, I am signing this object:

@killshot13
killshot13 / logview_template.md
Last active April 19, 2021 04:19
Logview_Template

Log Viewer Template

Use with Log Viewer extension for VS Code

{
    "logViewer.watch": [
        {
 "title": "Demo App",
@killshot13
killshot13 / README.md
Last active April 23, 2021 17:50
Custom README template
@killshot13
killshot13 / block-level.md
Last active June 3, 2021 05:58
HTML Elements

block level elements

Based on the Mozilla Web Docs

block-level element always starts on a new line and takes up the full width available (stretches out to the left and right as far as it can).

The complete list of all HTML "block-level" elements (although block and inline elements are no longer defined in HTML 5, use content categories instead).

Note: "block-level" is not technically defined for elements new in HTML5.

@killshot13
killshot13 / linux_snippets.md
Last active June 21, 2021 21:27
Linux Terminal Snippets (randomCollection)

Linux Terminal Snippets

one-liners

(randomCollection)


Reference Guide 2 $ymbols / -root directory

@killshot13
killshot13 / benchmarks.md
Last active June 29, 2021 02:09
Reference Guide for Responsive Images on Websites

Responsive Image Benchmarks

Compression

No image should exceed 500 KB (.5MB) in overall size.

  • JPEG Compression -- 60-70% of original image quality is the target range. Tolerance allows for adjustments as needed for your specific .jpg/.jpeg files.

  • Be sure to compare at realistic sizing and maintain correct L <-> W ratio.

@killshot13
killshot13 / exec.js
Last active July 26, 2021 11:42
nodeFunctions();
const { exec } = require('child_process')
exec('ls -ltra', (error, stdout, stderr) => {
if(error) {
// if an error occurs during exec process
console.error("Error", error.message);
return;
} else if(stderr) {
@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 / README.txt
Last active October 5, 2021 09:52
useful-reply-templates
Resuable templates for GitHub discussions, collegiate disucssion board posts, LinkedIn recruiters, and more.
All items may be reproduced, modified, and repurposed by anyone wishes to do so.
@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"
},
{