- Anjunadeep Editions on SoundCloud #deephouse.
View music-to-code-by.md
View SleepingGame.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open System | |
open System | |
open System.ComponentModel | |
let readLine () = | |
Console.ReadLine().ToLower() | |
let exit () = | |
printfn "\r\nByyyyyyyyyyeeeeeeeeeeeeeee zzzzzzzzzzzzzzzzzzzz\r\n" | |
0 |
View AmazingElmInsight.md
A finely curated list of resources used to my inform my adventures with Elmish:
- Thread on routing philosphy. The options and some guidance from experience.
View reactquerybuilder.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ReactQueryBuilder | |
open Fable.Core | |
open Fable.Import | |
open Fable.Import.React | |
open Fable.Core.JsInterop | |
open Fable.Helpers.React.Props | |
open System | |
// TODO |
View IForget.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Safely get Some head of Seq or None. | |
let maybeHead = someSeq |> Seq.tryPick Some |
View Lucene.md
- Death to Optimise - Not sure if this is relevant to the .NET port or not.
View idiomaticjsonserialiser.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Newtonsoft.Json.Converters | |
open Microsoft.FSharp.Reflection | |
open Newtonsoft.Json | |
open System | |
type IdiomaticDuConverter() = | |
inherit JsonConverter() | |
[<Literal>] |
View DefaultParameterValueFixupFilter.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace System.Web.Http | |
open System.Reflection | |
open System.Web.Http.Filters | |
open System.Web.Http.Controllers | |
open System.Runtime.InteropServices | |
/// Responsible for populating missing action arguments from DefaultParameterValueAttribute values. | |
/// Created to handle this issue https://github.com/aspnet/Mvc/issues/1923 | |
/// Note: This is for later version of System.Web.Http but could be back-ported. |
View ZoneGroupTopology.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Peelio.ZonePlayer.ZoneGroupTopology | |
open System | |
open System.Linq | |
open System.Xml.Linq | |
open Peelio | |
/// Union types for those state vars with a set of allowed values. | |
type A_ARG_TYPE_UpdateType = | All | Software | |
with |
NewerOlder