Dane's Stuff

Links

Abstract black and white photograph of a person in a mountain.

Links I find useful

Permalink to “Links I find useful”

This is a page of some links that have helped me with a brief description.

Study

Permalink to “Study”

Github

Permalink to “Github”

CSS

Permalink to “CSS”

JS

Permalink to “JS”

Java

Permalink to “Java”

RegEx

Permalink to “RegEx”

Snippets and Code Examples

Permalink to “Snippets and Code Examples”

Some code examples, I need to add more links, also some setups I have found useful.

Github

Permalink to “Github”

Setup git

Permalink to “Setup git”

Setting up aliases and such.

to see all configs
git config -l
edit config file directly
vi ~/.gitconfig - or - git config --global alias.st status
useful settings from .gitconfig file

user.name=dane
user.email=kingd9@gmail.com
alias.co=checkout
alias.st=status
alias.ci=commit
alias.br=branch
alias.shn=show --name-only
alias.lgn=log --oneline
core.editor=vim

UI

Permalink to “UI”

RxJs

Permalink to “RxJs”

Callbacks

NPM Global packages to install

Permalink to “NPM Global packages to install”

npm install -g win-node-env on windows makes npm calls function as linux

Setup NPM so you don't need sudo

Permalink to “Setup NPM so you don't need sudo”

Source

Visual Studio Code Setup

Permalink to “Visual Studio Code Setup”

To get to user setting

{
"git.autofetch": true,
"editor.suggestSelection": "first",
"emmet.triggerExpansionOnTab": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
]
}

Emmet Settings

Permalink to “Emmet Settings”

Source

Setting up eslint typescript with VSCode

Permalink to “Setting up eslint typescript with VSCode”
  {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"jsx": true,
"useJSXTextNode": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"plugins": ["@typescript-eslint"]
}