View game-setup.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cinst steam | |
cinst battle.net | |
del C:\Users\Public\Desktop\*.lnk |
View basic-setup.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
View virtualization-setup.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cinst virtualbox | |
cinst vagrant |
View dev-tools.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cinst git | |
cinst poshgit | |
cinst sourcetree | |
cinst visualstudio2015community | |
cinst visualstudiocode | |
cinst androidstudio | |
cinst sysinternals | |
del C:\Users\Public\Desktop\*.lnk |
View VagrantFile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
$script = <<-SCRIPT | |
apt-get update |
View setup.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
View settings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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, |
View gist:6192052f0596274956686a35e8ca018d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
View Vagrantfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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 |
View Vagrantfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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 |
OlderNewer