Skip to content

Instantly share code, notes, and snippets.

@brettveenstra
brettveenstra / gist:6c6b7f926383b744b8038e14e6483409
Created December 6, 2016 14:57 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@brettveenstra
brettveenstra / teamcity-metarunner-to-use-special-version-for-nuget.xml
Created November 29, 2016 13:42 — forked from augustoproiete/teamcity-metarunner-to-use-special-version-for-nuget.xml
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">
@brettveenstra
brettveenstra / semver.ps1
Created September 13, 2016 19:26 — forked from mckn/semver.ps1
Semver stuff in powershell
function Bump-Version
{
param([string]$part = $(throw "Part is a required parameter."))
$version = Get-AssemblyInfoVersion -Directory ..\Source -GlobalAssemblyInfo $true
$bumpedVersion = Clone-Object -Object $version
switch -wildcard ($part)
{
"ma*" { $bumpedVersion.Major = Bump-NumericVersion -Current $version.Major }
@brettveenstra
brettveenstra / NancyOwinSelfHostWindowsAuth.cs
Created August 22, 2016 13:24 — forked from damianh/NancyOwinSelfHostWindowsAuth.cs
Nancy owin self hosting with Microsoft.Owin.HttpListener and windows authentication on .NET 4.0 (Personal opinion: avoid windows NTLM auth in web applications, even intranet ones. Use standards based SSO.)
namespace ConsoleApplication1
{
using System;
using System.Collections.Generic;
using System.Net;
using System.Security.Principal;
using Microsoft.Owin.Hosting;
using Nancy;
using Owin;
@brettveenstra
brettveenstra / gource.sh
Created August 3, 2016 14:20 — forked from XueshiQiao/gource.sh
Generate a MP4 Video for your Git project commits using Gource!
# 1.install gource using HomeBrew
$ brew install gource
# 2.install avconv
git clone git://git.libav.org/libav.git
cd libav
# it will take 3-5 minutes to complie, be patient.
./configure --disable-yasm
make && make install
@brettveenstra
brettveenstra / transform.ps1
Created June 28, 2016 18:21 — forked from Warrenn/transform.ps1
Powershell script to transform a config file using a XML-Document-Transform file
function XmlDocTransform($xml, $xdt, $output)
{
if (!$xml -or !(Test-Path -path $xml -PathType Leaf)) {
throw "File not found. $xml";
}
if (!$xdt -or !(Test-Path -path $xdt -PathType Leaf)) {
throw "File not found. $xdt";
}
$transformDll = ""
@brettveenstra
brettveenstra / transform-xml.ps1
Created June 28, 2016 14:18 — forked from sayedihashimi/transform-xml.ps1
Script which can be used to transform an XML file using XDT. All you need to do is download the script and call it. The script will download the files it needs to run.
<#
.SYNOPSIS
You can use this script to easly transform any XML file using XDT.
To use this script you can just save it locally and execute it. The script
will download it's dependencies automatically.
#>
[cmdletbinding()]
param(
[Parameter(
Mandatory=$true,
@brettveenstra
brettveenstra / swagger-overrides.js
Created June 2, 2016 13:27 — forked from davetransom/swagger-overrides.js
A javascript override of swagger-ui markdown rendering to play nicely with XML comments generated from .NET
(function () {
var re_leading_whitespace = /^\s+(?=[^\s])/g,
re_is_whitespace = /^\s*$/,
re_br = /<br ?\/?>/gi,
re_blockquotes_for_html_fix = /^(\s*&gt;)+/gm;
function transform_markdown(html, text) {
var
// leading padding string, if found
@brettveenstra
brettveenstra / HtmlFormatter.cs
Created April 12, 2016 16:21 — forked from jakejscott/HtmlFormatter.cs
Asp.net web api, text/html, text/plain formatter
public class HtmlFormatter : MediaTypeFormatter
{
public HtmlFormatter()
{
SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html"));
SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/plain"));
}
protected override bool CanReadType(Type type)
{
@brettveenstra
brettveenstra / WebApiConfig.cs
Created April 11, 2016 19:30 — forked from nakamura-to/WebApiConfig.cs
ModelMetadata.ConvertEmptyStringToNull in ASP.NET Web API
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);