F# Weekly #42, 2016

Welcome to F# Weekly,

A roundup of F# content from this past week:

News

Videos/Presentations

Blogs

F# vNext

Open source projects

  • gsl – Genotype Specification Language
  • Suave.Azure.Functions – A library to use Suave in Azure Functions
  • FSharp.Data.GraphQL – FSharp implementation of Facebook GraphQL query language
  • MongoDB.FSharp – Silent utilities to make the official MongoDB driver feel natural to work with in F
  • fsautocomplete – F# compiler service API exposed via a console application
  • fable-react_native-demo – Demo of Fable with React Native for cross platform native mobile apps

New Releases

That’s all for now. Have a great week.

Previous F# Weekly edition – #41Subscribe

F# Weekly #41, 2016

Welcome to F# Weekly,

A roundup of F# content from this past week:

News

https://twitter.com/c4fsharp/status/782939277181059072

Videos/Presentations

Blogs

F# vNext

Open source projects

New Releases

That’s all for now. Have a great week.

Previous F# Weekly edition – #40Subscribe

F# Weekly #40, 2016

Welcome to F# Weekly,

A roundup of F# content from this past week:

News

Videos/Presentations

Blogs

F# vNext

Open source projects

  • TokensRegexProvider – F# TypeProvider provides types, properties, and methods for Stanford-NLP TokensRegex
  • Suave.Swagger – An extension for Suave.io with some REST tools and Swagger documentation helpers
  • Templatus – A T4-like templating tool with support for F#
  • Freckle – Simple monadic Functional Reactive Programming for F#
  • MasterOfFoo – An experiment in using printf style strings in more places.
  • fs.UnionCase – Small Library for Working with Discriminate Unions
  • SIMDArray – SIMD enhanced Array operations

New Releases

That’s all for now. Have a great week.

Previous F# Weekly edition – #38Subscribe

F# Weekly #39, 2016

Welcome to F# Weekly,

A roundup of F# content from this past week:

News

Videos/Presentations

Blogs

F# vNext

Open source projects

New Releases

That’s all for now. Have a great week.

Previous F# Weekly edition – #38Subscribe

F# Weekly #38, 2016

Welcome to F# Weekly,

A roundup of F# content from this past week:

News

Videos/Presentations

Blogs

F# vNext

Open source projects

New Releases

That’s all for now. Have a great week.

Previous F# Weekly edition – #37Subscribe

F# Weekly #37, 2016

Welcome to F# Weekly,

A roundup of F# content from this past week:

News

Videos/Presentations

Blogs

F# vNext

Open source projects

New Releases

That’s all for now. Have a great week.

Previous F# Weekly edition – #36Subscribe

F# Weekly #36, 2016

Welcome to F# Weekly,

A roundup of F# content from this past week:

https://twitter.com/c4fsharp/status/770333706770939904

News

Videos/Presentations

Blogs

F# vNext

Open source projects

  • dsyme/fsharp-presentations – Archive of some F# presentations over the years
  • fable-electron – Fable bindings and samples for Github Electron
  • SourceCodeTypeProvider – F# provided types generated from C# or F# source code
  • HttpFs.Auth0 – provides constructs which make it easier to use Auth0 when interacting with protected APIs.
  • Hopac.Plus – A collection of utilities that encapsulate common concurrency patterns and constructs for use with the Hopac concurrency library.
  • FSharpPerf

New Releases

That’s all for now. Have a great week.

Previous F# Weekly edition – #35Subscribe

F# Weekly #35, 2016

Welcome to F# Weekly,

A roundup of F# content from this past week:

https://twitter.com/c4fsharp/status/768858324569845760

News

Videos/Presentations

Blogs

F# vNext

Open source projects

https://twitter.com/ignitethewill/status/768975907746820096

New Releases

That’s all for now. Have a great week.

Previous F# Weekly edition – #34Subscribe

TypeShape: Practical Generic Programming in F#

Hmmm…

Eirik Tsarpalis's avatarEirik Tsarpalis' blog

Last week I announced a new library, TypeShape, with claims that it provides a practical way of doing generic programming in F#. I’m following up with this blog post to elaborate why I believe this to be genuinely useful, and how it could benefit the day-to-day life of the working .NET developer.

The pain of Reflection

Almost everybody who has worked with .NET will at some point need to dabble in the murky ways of reflection. Reflection is needed in scenaria where we need to access data in an indirect fashion, or where circumvention of the type system is necessary.

For example, assume that we have defined the following static method

Assume now that we would like invoke that method, with a value whose type cannot be known at compile time. In other words, we want to define a function

which takes an input of type obj and invokes the generic method…

View original post 558 more words