Skip to content

Instantly share code, notes, and snippets.

ECHO Configure chocolatey
choco feature enable -n allowGlobalConfirmation
ECHO Installing Apps
choco install fiddler4
choco install notepadplusplus
choco install visualstudiocode
#choco install greenshot
choco install GoogleChrome
choco install putty
# Start with Alpine base image
FROM alpine:latest
# Install wget and bash
RUN apk update && apk add wget bash
# download cuda
RUN wget http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda_7.5.18_linux.run
# Make the run file executable and extract
# Build
[Bb]in/
[Oo]bj/
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
build/
@josh-leeming
josh-leeming / 01-Update-Windows.ps1
Created April 21, 2016 10:27 — forked from ChaseFlorell/01-Update-Windows.ps1
Boxstarter Installation Scripts
# http://boxstarter.org/package/url?
#####################
# BEGIN CONFIGURATION
#####################
#region Initial Windows Config
Install-WindowsUpdate -AcceptEula
Update-ExecutionPolicy Unrestricted