Skip to content

Instantly share code, notes, and snippets.

@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 / 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 / virtualization-setup.ps1
Created February 10, 2016 05:27
Virtualization setup
cinst virtualbox
cinst vagrant
@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 / VagrantFile
Created March 23, 2016 20:04
3 Node Cassandra Cluster
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
$script = <<-SCRIPT
apt-get update
@theparticleman
theparticleman / setup.sh
Last active October 6, 2017 18:07
Raspberry Pi robot setup
#!/bin/bash
# Change keyboard layout
#sudo raspi-config, 4 - Localization, 3 - Change keyboard layout,
# Enable SSH
#sudo raspi-config, 5 - Interfacing Options, 2 - SSH
# Enable Camera
#sudo raspi-config, 5 - Interfacing Options, 1 - Camera
@theparticleman
theparticleman / settings.json
Created November 5, 2017 22:58
Visual Studio Code Settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 16,
"editor.tabSize": 2,
"workbench.colorTheme": "Visual Studio Dark",
"editor.multiCursorModifier": "ctrlCmd",
"window.zoomLevel": 0,
"editor.smoothScrolling": true,
"editor.cursorBlinking": "phase",
"editor.codeLens": false,
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions -DisableShowProtectedOSFiles
Set-TaskbarOptions -Size Small
cinst git
cinst visualstudiocode
cinst notepadplusplus
cinst 7zip
cinst paint.net
$o = New-Object -com Shell.Application
@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
@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