Skip to content

Instantly share code, notes, and snippets.

@ValeroK
ValeroK / NEO-install-choco-script.bat
Last active August 16, 2017 08:39
Setup Dev env using chocolaty
:: Install choco .exe and add choco to PATH
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
:: Install all the packages
:::: Browsers
choco install googlechrome -fy
:::: Text editors / IDEs
choco install visualstudiocode -fy
:: also need to install the C# Extensions and .Net Core SDK https://www.microsoft.com/net/core#windowscmd
@josephhays
josephhays / README.md
Last active March 28, 2017 13:20
StackShare comparison tool
@sloria
sloria / bobp-python.md
Last active May 1, 2024 08:37
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens