Skip to content

Instantly share code, notes, and snippets.

@ryanwersal
ryanwersal / reactive PR #537 API diff
Last active May 30, 2018 00:42
dotnet/reactive PR #537 API diff
--- ApiApprovalTests.Core.received.txt 2018-05-29 18:57:13.000000000 -0500
+++ ApiApprovalTests.Core.approved.txt 2018-05-29 17:37:40.000000000 -0500
@@ -1621,7 +1621,7 @@
public static System.Reactive.Linq.IQbservable<bool> Any<TSource>(this System.Reactive.Linq.IQbservable<TSource> source, System.Linq.Expressions.Expression<System.Func<TSource, bool>> predicate) { }
public static System.IObservable<TSource> AsObservable<TSource>(this System.Reactive.Linq.IQbservable<TSource> source) { }
public static System.Reactive.Linq.IQbservable<TSource> AsQbservable<TSource>(this System.IObservable<TSource> source) { }
- public static System.Reactive.Linq.IQbservable<TSource> AutoConnect<TSource>(this System.Reactive.Linq.IQbservableProvider provider, System.Reactive.Subjects.IConnectableObservable<TSource> source, int minObservers, System.Linq.Expressions.Expression<System.Action<System.IDisposable>> onConnect) { }
+ public static System.Reactive.Linq.IQbservable<TSource> AutoC
@ryanwersal
ryanwersal / xamarinandroidbindings.md
Created August 4, 2017 15:05 — forked from JonDouglas/xamarinandroidbindings.md
Xamarin Android Bindings Troubleshooting

Approaching a Xamarin.Android Bindings Case

1. Investigation

One of the best ways to investigate a problematic Xamarin.Android Binding is to first ensure you have the proper tooling available:

@ryanwersal
ryanwersal / example.clj
Created October 21, 2014 04:18
msgpack based websocket communication between clojure and python
(ns example.core
(:gen-class)
(:require [immutant.web :as web]
[immutant.web.websocket :as ws]
[ring.middleware.resource :refer [wrap-resource]]
[ring.util.response :refer [redirect]]
[msgpack.core :as msgpack]))
(defn -main
[& args]