Skip to content

Instantly share code, notes, and snippets.

View rsenna's full-sized avatar
🏠
Working from home

Rogério Senna rsenna

🏠
Working from home
  • Thoughtworks
  • Barcelona, Spain
  • 01:58 (UTC +02:00)
  • X @rsenna
View GitHub Profile
const {
Clipboard,
Front,
Hints,
Normal,
RUNTIME,
Visual,
aceVimMap,
addSearchAlias,
cmap,
@rsenna
rsenna / Console command
Created November 30, 2012 16:41 — forked from joshuaflanagan/Console command
Turn off Always Start When Debugging for all web projects (run within Nuget powershell console)
get-project -all | %{ $_.Properties | ?{ $_.Name -eq "WebApplication.StartWebServerOnDebug" } | %{ $_.Value = "False"} }