Skip to content

Instantly share code, notes, and snippets.

View augustoproiete's full-sized avatar
👨‍💻
shipping it :shipit: from home 🏠

C. Augusto Proiete augustoproiete

👨‍💻
shipping it :shipit: from home 🏠
View GitHub Profile
@augustoproiete
augustoproiete / gist:4958139
Created February 15, 2013 02:23
tracert -h 60 216.81.59.173
Tracing route to FIN [216.81.59.173]
over a maximum of 60 hops:
1 1 ms <1 ms <1 ms 192.168.42.1
2 11 ms 8 ms 37 ms 216.249.32.150
3 15 ms 28 ms 22 ms 66.55.118.63
4 22 ms 14 ms 17 ms eHEX-ce-01.northrock.bm [66.55.117.47]
5 106 ms 157 ms 344 ms eNYC-ce-01.northrock.bm [66.55.117.50]
6 62 ms 52 ms 52 ms core1.nyc4.he.net [198.32.118.57]
7 57 ms 50 ms 44 ms 10gigabitethernet2-3.core1.ash1.he.net [72.52.92.86]
@augustoproiete
augustoproiete / GrantAccess-WindowsApps.cmd
Created October 12, 2012 17:52
Get access to the %ProgramFiles%\WindowsApps folder and view apps source code
@REM More info:
@REM http://caioproiete.net/en/get-access-to-the-programfileswindowsapps-folder-and-view-apps-source-code/
@echo Backing up current folder permissions to a temporary file
@icacls "%ProgramFiles%\WindowsApps" /save "%TEMP%\WindowsApps.acl" /Q
@if ERRORLEVEL 1 goto rollback
@echo Assigning the ownership of the folder to the current logged user
@takeown /F "%ProgramFiles%\WindowsApps"
@if ERRORLEVEL 1 goto rollback
@augustoproiete
augustoproiete / Web.config
Created May 8, 2012 16:44
Force the latest IE version for every View/Page, use Chrome frame if available
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- ... -->
<system.webServer>
<!-- ... -->
<httpProtocol>
<customHeaders>
<!-- Force the latest IE version, use Chrome frame if available -->
<add name="X-UA-Compatible" value="IE=Edge,chrome=1" />
</customHeaders>
@augustoproiete
augustoproiete / CleanUp.ps1
Created December 12, 2011 11:32
PowerShell script to remove files generated by Visual Studio, ReSharper, etc...
Write-Host "Cleaning up..."
$foldersToRemove =
"bin",
"obj",
"TestResults",
"_ReSharper.*"
$filesToRemove =
"Thumbs.db",
@augustoproiete
augustoproiete / Web.config
Created May 12, 2011 11:34
Redirect www to Non-www using URL Rewrite Module 2.0
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="RedirectWwwToNonWww">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^yourwebsite\.com$" negate="true" />
</conditions>