Skip to content

Instantly share code, notes, and snippets.

View nicholasp's full-sized avatar
🚀
🌙

Nicholas Papadopoulos nicholasp

🚀
🌙
View GitHub Profile
using namespace System.Management.Automation
using namespace System.Management.Automation.Language
if ($host.Name -eq 'ConsoleHost')
{
Import-Module PSReadLine
}
#Import-Module PSColors
#Import-Module posh-git
Import-Module -Name Terminal-Icons
@nicholasp
nicholasp / setupmachine.bat
Last active October 3, 2022 12:58 — forked from shanselman/setupmachine.bat
WinGet Setup a New Machine
mkdir c:\github
winget install --id=Git.Git -e --accept-package-agreements --accept-source-agreements
winget install --id=Microsoft.VisualStudioCode -e
winget install --id=7zip.7zip -e
winget install --id=Figma.Figma -e
winget install --id=TimKosse.FileZilla.Client -e
winget install --id=Microsoft.GitCredentialManagerCore -e
winget install --id=GitHub.cli -e
winget install --id=GitHub.GitHubDesktop -e
winget install --id=Google.Chrome -e
@nicholasp
nicholasp / .eslintrc.json
Created January 16, 2020 14:32 — forked from johnpapa/.eslintrc.json
.eslintrc
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true