Fsharp

TFN Generator

A Tax File Number (TFN) is a unique identifier issued by the Australian Taxation Office (ATO) to individuals and organizations for tax and superannuation purposes. It consists of a nine-digit number, where the last digit is a checksum, which ensures that the number is valid. The below tool generates random TFN with a valid checksum. Once you have clicked on the Generate TFN button, click the TFN to copy it to your clipboard.
Read more

Visual Studio Code - Running F# scripts from VS Code tasks

Below is an reference tasks.json file showing a single task that runs an F# script. { "version": "2.0.0", "tasks": [ { "type": "shell", "command": "dotnet fsi ./MyScript.fsx", "label": "My Script", "problemMatcher": [], "options": { "cwd": "${workspaceFolder}" }, "presentation": { "reveal": "silent", "panel": "dedicated", "showReuseMessage": false, "clear": true } } ] }

ConfigurationBuilder - How do I do that again?

Often when starting a new F# app, there comes a time when I want to read some configuration settings from a file, which can be overridden by environmental variables when running in production. This is closely followed by head-scratching as I try to remember how ConfigurationBuilder works and what NuGet packages I need. The below example should set you straight until Microsoft changes the API again, which should be just before the next time I type dotnet new .
Read more