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 -y microsoftsecurityessentials onedrive 7zip notepadplusplus.install google-chrome-x64 ccleaner VirtualCloneDrive cutepdf | |
cinst -y fiddler4 winmerge linqpad4 expresso dotPeek git SourceTree visualstudiocode VisualStudio2013Professional ReSharper mssqlservermanagementstudio2014express | |
cinst -y slack cctray | |
cinst IIS-WebServerRole -source windowsfeatures | |
Enable-MicrosoftUpdate | |
Install-WindowsUpdate | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions -EnableShowFullPathInTitleBar |
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
var gistPrefix = 'https://gist.github.com/', | |
// Cache document.write so that it can be restored once all Gists have been | |
// embedded. | |
cachedWrite = document.write, | |
body = $('body'), | |
// Map each p.gist to an object that contains the paragraph to be replaced | |
// and the Gist's identifier. | |
gists = $('a.gist').map(function(n, a) { | |
a = $(a); | |
var href = a.attr('href'); |