I hereby claim:
- I am theangrybyrd on github.
- I am jimmybyrd (https://keybase.io/jimmybyrd) on keybase.
- I have a public key whose fingerprint is D0ED F7BD DEB5 74F1 25AF FD5E 453C 188A D59B E496
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| set -ex | |
| echo "*****Installing Depedencies*****" | |
| apt-get update | |
| apt-get install -y curl libunwind8 gettext | |
| echo "*****Finished Installing Depedencies*****" | |
| echo "*****Downloading Dotnet*****" |
| using System.Reactive.Linq; | |
| using ReactiveUI; | |
| namespace OutputProperties | |
| { | |
| public class MainWindowViewModel : ReactiveObject | |
| { | |
| private string _firstName; | |
| private string _lastName; | |
| private string _favoriteColor; |
| sudo mozroots --import --machine --sync | |
| sudo certmgr -ssl -m https://go.microsoft.com | |
| sudo certmgr -ssl -m https://nugetgallery.blob.core.windows.net | |
| sudo certmgr -ssl -m https://nuget.org |
| #!/bin/bash | |
| set -ex | |
| PREFIX=$@ | |
| if [ -z $PREFIX ]; then | |
| PREFIX="$HOME/mono/4.0.0" | |
| fi | |
| # Ensure you have write permissions to PREFIX |
| let tryDontCare f = | |
| try | |
| f() | |
| with | _ -> () | |
| let observableFromProcess program args = | |
| Observable.Create(fun (obs : IObserver<string>) -> | |
| let pInfo = ProcessStartInfo(program,args) | |
| pInfo.RedirectStandardOutput <- true |
| namespace AsyncToObservableBenchmarks | |
| open Xunit | |
| open System.Threading.Tasks | |
| open System.Reactive.Linq | |
| open System | |
| open System.Threading | |
| module Algorithm1 = | |
| let private oneAndDone (obs : IObserver<_>) value = |
| @ECHO OFF | |
| SET CYG_BASH=C:\tools\cygwin\bin\bash | |
| ::get chocoloately for great good | |
| @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
| ::to pretend we're linux | |
| choco install cygwin -x86 -y | |
| ::get mono 4.0.2 | |
| choco install mono -version 4.0.2 -y | |
| ::need checks, the mirror sometimes forgets to install packages |
| #!/bin/bash | |
| # | |
| # Copyright (c) 2011-2012, Mihail Szabolcs | |
| # | |
| # Released into the public domain. For more information see http://unlicense.org/ . | |
| # | |
| # Bootstraps an environment that makes it possible to cross-compile libraries like SDL, | |
| # or pretty much anything else in an easy and unobstrusive manner. | |
| # | |
| # Requirements: |
| #!/bin/bash | |
| # If this doesn't work, ensure you have UNIX line endings in this file | |
| # (\n, not \r\n.) You can use Notepad++ to switch them. | |
| # Cygwin package requirements: gcc-mingw, pkg-config | |
| # If you want to pass -z to mkbundle: mingw-zlib1, mingw-zlib-devel | |
| # crash immediately if anything bad happens | |
| set -o errexit | |
| set -o nounset |