create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| { | |
| "root": true, | |
| "extends": [ | |
| "eslint:recommended", | |
| "plugin:import/errors", | |
| "plugin:import/warnings" | |
| ], | |
| "parserOptions": { | |
| "ecmaVersion": 7, | |
| "sourceType": "module" |
| { | |
| "name": "javascript-development-environment", | |
| "version": "1.0.0", | |
| "description": "JavaScript development environment Pluralsight course by Cory House", | |
| "scripts": { | |
| }, | |
| "author": "Cory House", | |
| "license": "MIT", | |
| "dependencies": { | |
| "whatwg-fetch": "1.0.0" |
| import path from 'path'; | |
| export default { | |
| debug: true, | |
| devtool: 'inline-source-map', | |
| noInfo: false, | |
| entry: [ | |
| path.resolve(__dirname, 'src/index') | |
| ], | |
| target: 'web', |
| import express from 'express'; | |
| import webpack from 'webpack'; | |
| import path from 'path'; | |
| import config from '../webpack.config.dev'; | |
| import open from 'open'; | |
| import webpackDevMiddleware from 'webpack-dev-middleware'; | |
| import webpackHotMiddleware from 'webpack-hot-middleware'; | |
| /* eslint-disable no-console */ |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| # Git functions | |
| # Mark Embling (http://www.markembling.info/) | |
| # Is the current directory a git repository/working copy? | |
| function isCurrentDirectoryGitRepository { | |
| if ((Test-Path ".git") -eq $TRUE) { | |
| return $TRUE | |
| } | |
| # Test within parent dirs |
| @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
| choco feature enable -n allowGlobalConfirmation | |
| choco install 7zip.install /y | |
| choco install ARMClient /y | |
| choco install audacity /y | |
| choco install autohotkey.portable /y | |
| choco install autoit.commandline /y | |
| choco install blender /y | |
| choco install chocolatey /y |
| *.doc diff=astextplain | |
| *.DOC diff=astextplain | |
| *.docx diff=astextplain | |
| *.DOCX diff=astextplain | |
| *.dot diff=astextplain | |
| *.DOT diff=astextplain | |
| *.pdf diff=astextplain | |
| *.PDF diff=astextplain | |
| *.rtf diff=astextplain | |
| *.RTF diff=astextplain |
| <NotepadPlus> | |
| <UserLang name="LogFile" ext="log"> | |
| <Settings> | |
| <Global caseIgnored="yes" /> | |
| <TreatAsSymbol comment="no" commentLine="no" /> | |
| <Prefix words1="no" words2="no" words3="no" words4="no" /> | |
| </Settings> | |
| <KeywordLists> | |
| <Keywords name="Delimiters">[(0])0</Keywords> | |
| <Keywords name="Folder+"></Keywords> |