Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@theparticleman
theparticleman / virtualization-setup.ps1
Created February 10, 2016 05:27
Virtualization setup
cinst virtualbox
cinst vagrant
@theparticleman
theparticleman / game-setup.ps1
Last active January 30, 2016 02:39
Game setup
cinst steam
cinst battle.net
del C:\Users\Public\Desktop\*.lnk
@theparticleman
theparticleman / dev-tools.ps1
Last active February 26, 2016 03:27
Set up development tools
cinst git
cinst poshgit
cinst sourcetree
cinst visualstudio2015community
cinst visualstudiocode
cinst androidstudio
cinst sysinternals
del C:\Users\Public\Desktop\*.lnk
@theparticleman
theparticleman / basic-setup.ps1
Last active January 30, 2016 19:19
Basic machine setup
Rename-Computer tau
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions -DisableShowProtectedOSFiles
Set-TaskbarOptions -Size Small
Install-WindowsUpdate
cinst chocolatey
cinst googlechrome
cinst notepadplusplus
cinst 7zip
cinst paint.net
@theparticleman
theparticleman / Vagrantfile
Created December 2, 2015 23:00
ASP.NET 5 with .NET Core Vagrant
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network :private_network, ip: "192.168.33.15"
$script = <<-SCRIPT
reset
sudo apt-get update
@theparticleman
theparticleman / Vagrantfile
Created December 1, 2015 19:47
.NET Core Vagrant
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
$script = <<-SCRIPT
sh -c 'echo "deb [arch=amd64] http://apt-mo.trafficmanager.net/repos/dotnet/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893
apt-get update