Skip to content

Instantly share code, notes, and snippets.

View scheffler's full-sized avatar

Steve Scheffler scheffler

View GitHub Profile
@scheffler
scheffler / vstudio-preferred-extensions.md
Last active May 22, 2019 19:10
Visual Studio 2019 Preferred Extensions

Visual Studio Extensions

Open Command Line

Add New File

@scheffler
scheffler / vscode-config.md
Created May 18, 2019 14:48
VSCode config

Visual Studio Code Configuration Prefs

This is a collection of vscode configuration settings that I've found useful.

Plugins

  • ESLint - javascript linting
  • Prettier - opinionted code formatter
  • vscode-styled-components - this is growing on me
@scheffler
scheffler / create-react-app-config.md
Last active November 23, 2019 14:37
Create React app configuration
@scheffler
scheffler / cra-dotnet.md
Created May 18, 2019 14:46
Create a React app w/ dotnet backend
@scheffler
scheffler / eslintrc.json
Created May 18, 2019 14:45
eslint settings
{
"extends": ["react-app", "plugin:prettier/recommended"],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"jsxBracketSameLine": true,
"bracketSpacing": false
}
@scheffler
scheffler / CM Description Template.txt
Created April 23, 2019 23:13
JIRA Change Management project description template
h3. Description
h3. Questions / Discussion
h3. When will the work be performed
h3. Who will be doing the work
h3. What production/systems are impacted by the work being performed
@scheffler
scheffler / .gitconfig
Created April 4, 2019 19:14 — forked from dahlbyk/.gitconfig
Windows Git Diff/Merge Tool Configuration
[alias]
dt = difftool
mt = mergetool
[diff]
tool = bc3
[difftool]
prompt = false
[difftool "bc3"]
cmd = \"c:/program files (x86)/beyond compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\"
[difftool "p4"]
@scheffler
scheffler / .gitignore
Created February 3, 2019 18:12
.gitignore samples
*.swp
*.*~
project.lock.json
.DS_Store
*.pyc
nupkg/
# Visual Studio Code
.vscode
@scheffler
scheffler / reset_nic_fix_vpn_issu.ps1
Created January 29, 2019 22:21
Resolve 'modem' in use vpn connection issue in Windows 10
#
# 'Modem in use' vpn issue can be resolved by resetting the newtork stack. Run this from an elevated perm powershell
#
# https://support.microsoft.com/en-us/help/10741/windows-fix-network-connection-issues
#
netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew