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 / 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>
@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 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 / 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 / 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 / License.txt
Created September 30, 2014 13:00
Example Unofficial NuGet Package for DevExpress Controls
DEVELOPER EXPRESS INC
DEVEXPRESS .NET Controls and Frameworks
Copyright (C) 2000-2014 Developer Express Inc.
END-USER LICENSE AGREEMENT
FOR ALL SOFTWARE DEVELOPMENT PRODUCT(S) INCLUDED IN THIS DISTRIBUTION
IMPORTANT- READ CAREFULLY: This DEVELOPER EXPRESS INC ("DEVEXPRESS") End-User License Agreement ("EULA") is a legal agreement between you, a developer of software applications, ("Developer End User") and DEVEXPRESS for all DEVEXPRESS products, frameworks, components, source code, demos, intermediate files, media, printed materials, and "online" or electronic documentation ("SOFTWARE DEVELOPMENT PRODUCT(S)") contained in this distribution.
By installing, copying, or otherwise using the SOFTWARE DEVELOPMENT PRODUCT(S), you agree to be bound by the terms of this EULA. If you do not agree to any part of the terms of this EULA, DO NOT INSTALL, COPY, USE, EVALUATE, OR REPLICATE IN ANY MANNER, ANY PART, FILE OR PORTION OF THE SOFTWARE DEVELOPMENT PRODUCT(S).
@augustoproiete
augustoproiete / gist:7e37ab5209a1a47d6ab0
Last active November 30, 2015 18:54 — forked from nblumhardt/gist:07c8046ffdcbd3d6b1fa
Configuring Serilog w/ AppSettings and Seq

1. Install Serilog.Extras.AppSettings

PM> Install-Package Serilog.Extras.AppSettings

2. Add the 'read' method to logger config

... = new LoggerConfiguration()
@augustoproiete
augustoproiete / teamcity-metarunner-to-use-special-version-for-nuget.xml
Last active March 24, 2021 01:21
Example of a TeamCity meta-runner that updates the build.version variable and provides other variants of version variables, such as a special version for NuGet
<?xml version="1.0" encoding="UTF-8"?>
<meta-runner name="Meta (CaioProiete): Initialize build and set custom parameters">
<description>Initialize the build and set the value of some custom parameters that can be used during the build, such as version, timestamp, and others</description>
<settings>
<parameters>
<param name="mr.initialize_build.releaseBranch" value="%build.releaseBranch%" spec="text label='Release Branch:' description='The name of the branch from where production releases are generated' display='normal' validationMode='not_empty'" />
<param name="mr.initialize_build.verbose" value="SilentlyContinue" spec="checkbox checkedValue='Continue' description='Log verbose messages?' display='normal' label='Verbose:' uncheckedValue='SilentlyContinue'" />
</parameters>
<build-runners>
<runner name="Initialize build and set custom parameters" type="jetbrains_powershell">

Keybase proof

I hereby claim:

  • I am caioproiete on github.
  • I am caioproiete (https://keybase.io/caioproiete) on keybase.
  • I have a public key whose fingerprint is 06E3 2C7B EE28 4DE5 F315 B43B 8BB1 65D1 FD13 745D

To claim this, I am signing this object:

@augustoproiete
augustoproiete / App.config
Created October 27, 2015 01:23
Example of using custom prefixes with Serilog when using AppSettings
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="custom1:serilog:minimum-level" value="Warning" />
<add key="custom2:serilog:minimum-level" value="Error" />
</appSettings>
</configuration>