I hereby claim:
- I am mavnn on github.
- I am mavnn (https://keybase.io/mavnn) on keybase.
- I have a public key whose fingerprint is 075C 7646 3066 8A63 B3BD 05DC 5F95 FCB1 A054 42B1
To claim this, I am signing this object:
| module Provider | |
| #if INTERACTIVE | |
| #load "paket-files/fsprojects/FSharp.TypeProviders.StarterPack/src/ProvidedTypes.fsi" | |
| #load "paket-files/fsprojects/FSharp.TypeProviders.StarterPack/src/ProvidedTypes.fs" | |
| #endif | |
| open System.Reflection | |
| open ProviderImplementation.ProvidedTypes | |
| open Microsoft.FSharp.Core.CompilerServices | |
| open Microsoft.FSharp.Quotations |
| open System | |
| let (|Alive|Dead|) i = | |
| match i with | |
| | 0 -> Dead | |
| | 1 -> Alive | |
| | _ -> failwith "What?" | |
| let rand = Random() |
| open Targ | |
| type InputArgs = Args<""" | |
| v|Verbose|Flag to specify if in verbose mode|Bool| | |
| s|TargetSchema|Set schema (http/https/...)|String|http | |
| u|TargetUrl|Set Url to download from|String|google.com | |
| p|Port|Set port to connect on|Int|80 | |
| """> | |
| [<EntryPoint>] |
| source https://nuget.org/api/v2 | |
| nuget FSharp.Formatting | |
| nuget NUnit | |
| nuget NUnit.Runners | |
| nuget Nuget.CommandLine | |
| nuget FAKE | |
| nuget SourceLink.Fake | |
| github fsharp/FAKE modules/Octokit/Octokit.fsx |
I hereby claim:
To claim this, I am signing this object:
| module Algebra.Boolean.Tests | |
| open Microsoft.FSharp.Quotations | |
| open Algebra.Boolean | |
| open Xunit | |
| [<Fact>] | |
| let ``not pattern`` () = | |
| Assert.Equal (<@@ true @@>, match <@@ not true @@> with Not' e -> e) |
| module PDF | |
| // You can install Pechkin from NuGet | |
| open Pechkin | |
| open System.Drawing.Printing | |
| [<Measure>] | |
| type mm | |
| [<Measure>] |
| In this session we'll start from a brand new Visual Studio | |
| project and work as a group to a type provider which: | |
| * Creates a namespace | |
| * Adds a type to that namespace with: | |
| * a static property | |
| * a constructor or 2 | |
| * an instance property | |
| * an instance method |
| module Embedded | |
| open System | |
| open System.IO | |
| open System.Reflection | |
| open Suave | |
| open Suave.Http | |
| open Suave.Types | |
| open Suave.Socket |
| module Mavnn.Blog.TypeProvider | |
| open ProviderImplementation.ProvidedTypes | |
| open Microsoft.FSharp.Core.CompilerServices | |
| [<TypeProvider>] | |
| type MavnnProvider (config : TypeProviderConfig) as this = | |
| inherit TypeProviderForNamespaces () | |
| [<assembly:TypeProviderAssembly>] |