This file contains hidden or 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
| { | |
| // layout | |
| "workbench.list.smoothScrolling": true, | |
| "workbench.colorCustomizations": {}, | |
| "workbench.startupEditor": "none", | |
| "workbench.activityBar.location": "top", | |
| "workbench.iconTheme": "moxer-icons", | |
| // editor | |
| "editor.accessibilitySupport": "off", |
This file contains hidden or 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.Collections.Generic | |
| [<Literal>] | |
| let DDSK = "ドドスコスコスコドドスコスコスコドドスコスコスコ" | |
| let withLastNElements n (sq: seq<'T>) = | |
| let mutable queue = Queue() |
This file contains hidden or 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
| [*.{fs,fsx,fsi}] | |
| max_line_length = 88 | |
| fsharp_max_infix_operator_expression = 60 | |
| fsharp_max_dot_get_expression = 60 | |
| fsharp_multiline_bracket_style = stroustrup |
This file contains hidden or 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
| [ | |
| // | |
| // Copy, Select All | |
| // | |
| { | |
| "key": "ctrl+c", | |
| "command": "-vscode-neovim.escape", | |
| "when": "editorTextFocus && neovim.ctrlKeysNormal.c && neovim.init && !dirtyDiffVisible && !findWidgetVisible && !inReferenceSearchEditor && !markersNavigationVisible && !notebookCellFocused && !notificationCenterVisible && !parameterHintsVisible && !referenceSearchVisible && neovim.mode == 'normal' && editorLangId not in 'neovim.editorLangIdExclusions'" | |
| }, | |
| { |
This file contains hidden or 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.Threading | |
| type Frame = string[] | |
| type Animation = seq<Frame> | |
| let mergeFrame (a: Frame) (b: Frame) : Frame = | |
| Array.zip a b | |
| |> Array.map (fun (a, b) -> | |
| (a.ToCharArray(), b.ToCharArray()) |
This file contains hidden or 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
| let (|Fizz|_|) n = if n % 3 = 0 then Some "Fizz" else None | |
| let (|Buzz|_|) n = if n % 5 = 0 then Some "Buzz" else None | |
| let (|FizzBuzz|_|) n = | |
| if n % 15 = 0 then Some "FizzBuzz" else None | |
| let fizzBuzz = | |
| function | |
| | FizzBuzz fizzbuzz -> fizzbuzz | |
| | Fizz fizz -> fizz |
This file contains hidden or 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
| type Block = | |
| | H1 of string | |
| | H2 of string | |
| | P of string | |
| type Markdown = { | |
| title: string | |
| author: string | |
| blocks: Block list | |
| } with |
This file contains hidden or 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
| // fix: https://gist.github.com/jkone27/de477e362f3ee9f36069c0010e0a1f29 | |
| open Microsoft.ML | |
| open Microsoft.ML.Data | |
| open FSharp.Data | |
| [<Literal>] | |
| let trainDataPath = __SOURCE_DIRECTORY__ + "/house-price-train.csv" | |
| [<Literal>] |
This file contains hidden or 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
| type NextChar = NextChar | |
| type NextWidth = NextWidth of char | |
| type NextHeight = NextHeight of char * int | |
| type EndUnnko = EndUnnko of char * int * int | |
| type UnnkoBuilder () = | |
| member _.Yield(_: unit) = NextChar | |
| member _.Run(EndUnnko (char, w, h): EndUnnko) = | |
| let nChars n c = c |> Array.replicate n |> System.String | |
| printfn "%s∫ ∫ ∫ " <| nChars h ' ' | |
| printfn "%sノヽ " <| nChars h ' ' |