account-chapter
๐
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 Giraffe | |
open Saturn | |
let webApp = GET >=> route "/" >=> text "Hello world" | |
[<EntryPoint>] let main _ = run (application { use_router webApp });0 |
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 Microsoft.AspNetCore.Hosting | |
open Microsoft.Extensions.Hosting | |
open Giraffe | |
let webApp = GET >=> route "/" >=> text "Hello world" | |
[<EntryPoint>] | |
let main args = | |
Host.CreateDefaultBuilder(args) | |
.ConfigureWebHostDefaults(fun webBuilder -> |
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
class Program | |
{ | |
static ManualResetEvent _produce = new ManualResetEvent(false); | |
static ManualResetEvent _consume = new ManualResetEvent(false); | |
private static void Run() | |
{ | |
while (true) | |
{ | |
_produce.WaitOne(); | |
_produce.Reset(); |
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
public static int Hash(ReadOnlySpan<byte> data, uint seed) | |
{ | |
const uint c1 = 0xcc9e2d51; | |
const uint c2 = 0x1b873593; | |
var ints = MemoryMarshal.Cast<byte,uint>(data); | |
var h1 = seed; | |
var end = (data.Length >> 2); // /= 4 | |
uint k1; |
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
// Calculates the cost of an Azure Container Instances container | |
// Using the default Linux container with 1 vCpu and 1.5GB vRAM | |
[<Measure>] type gb | |
[<Measure>] type cores | |
[<Measure>] type sec | |
[<Measure>] type hour | |
[<Measure>] type pound | |
[<Measure>] type gbPerSec = gb/sec |