Skip to content

Instantly share code, notes, and snippets.

@kiwipiet
kiwipiet / 0_reuse_code.js
Created October 16, 2015 01:21
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@kiwipiet
kiwipiet / Observable.cs
Created September 22, 2019 18:43 — forked from heytherewill/Observable.cs
Use the common method names in Rx.Net instead of using the LINQ ones.
using System.Collections.Generic;
using System.Reactive.Concurrency;
using System.Reactive.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace System.Reactive.ApiMappings
{
public static class ObservableEx
{