Skip to content

Instantly share code, notes, and snippets.

<Query Kind="Program">
<NuGetReference>Octokit</NuGetReference>
<NuGetReference>Octokit.Reactive</NuGetReference>
<NuGetReference>Rx-Main</NuGetReference>
<Namespace>Octokit</Namespace>
<Namespace>System.Linq</Namespace>
<Namespace>System.Reactive.Linq</Namespace>
<Namespace>System.Threading.Tasks</Namespace>
</Query>
@7u4
7u4 / IISproxyToTeamCitySteps.txt
Created February 23, 2016 15:06 — forked from jrgcubano/IISproxyToTeamCitySteps.txt
Proxy using IIS to TeamCity site
Request:
Proxy to teamcity. Use a proxy in IIS and redirect "input" to "output".
Ideas:
http://jonalb.com/post/2010/10/23/TeamCity-On-Port-80-In-IIS.aspx
http://www.wrapcode.com/infrastructure/configure-reverse-proxy-with-url-rewrite-and-arr-for-iis/
Solution:
- Create an empty site in IIS
@7u4
7u4 / concurrency-in-go.md
Created March 13, 2016 12:22 — forked from kachayev/concurrency-in-go.md
Channels Are Not Enough or Why Pipelining Is Not That Easy
@7u4
7u4 / prototypes.js
Created March 19, 2016 03:07 — forked from torgeir/prototypes.js
javascript's __proto__ and prototype explained
/**
* __proto__ and prototype
* - the __proto__ property the instance's 'parent' up the prototype chain
* - the prototype property refers what new instances of the type will have their __proto__ set to, i.e. what will be the new instance's 'parent' up the prototype chain
*/
/* Given */
function Object () {}
Object.prototype = {
__proto__: null
@7u4
7u4 / bcompare-git.md
Created April 8, 2016 04:41 — forked from jfromaniello/bcompare-git.md
Integrate beyond compare 4 with git

Install command line tools:

then run this:

git config --global diff.tool bc3
git config --global difftool.bc3 trustExitCode true
git config --global merge.tool bc3
@7u4
7u4 / FRP iOS Learning resources.md
Created April 14, 2016 05:03 — forked from JaviLorbada/FRP iOS Learning resources.md
The best FRP iOS resources.

Videos

@7u4
7u4 / introrx.md
Created April 16, 2016 17:29 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@7u4
7u4 / tab.bash
Created June 7, 2016 06:06 — forked from bobthecow/tab.bash
Open new Terminal tabs from the command line
#!/bin/bash
#
# Open new Terminal tabs from the command line
#
# Author: Justin Hileman (http://justinhileman.com)
#
# Installation:
# Add the following function to your `.bashrc` or `.bash_profile`,
# or save it somewhere (e.g. `~/.tab.bash`) and source it in `.bashrc`
#
@7u4
7u4 / Example1.cs
Created June 12, 2016 15:32 — forked from davidfowl/Example1.cs
How .NET Standard relates to .NET Platforms
namespace Analogy
{
/// <summary>
/// This example shows that a library that needs access to target .NET Standard 1.3
/// can only access APIs available in that .NET Standard. Even though similar the APIs exist on .NET
/// Framework 4.5, it implements a version of .NET Standard that isn't compatible with the library.
/// </summary>INetCoreApp10
class Example1
{
public void Net45Application(INetFramework45 platform)
@7u4
7u4 / osx-for-hackers.sh
Created July 5, 2016 00:50 — forked from brandonb927/osx-for-hackers.sh
OSX for Hackers: Yosemite/El Capitan Edition. This script tries not to be *too* opinionated and any major changes to your system require a prompt. You've been warned. Also, please don't email me about this script, my poor inbox...
#!/bin/sh
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'