Skip to content

Instantly share code, notes, and snippets.

View aklefdal's full-sized avatar

Alf Kåre Lefdal aklefdal

View GitHub Profile
@bjartwolf
bjartwolf / reading_list.md
Last active November 22, 2021 19:45
THE COMMANDANT'S PROFESSIONAL READING LIST

This is my recommended reading list. My recommendations are just that, I am not a commandant. It is only based on books I have read, so obviously biased and quite limited. I have named it based on one of the books in my reading list. Parts are .NET centered because that is mostly what I know. A lot is focused on the web. This is not a generic reading list for any software developer, I am mostly focused on web and API focused work stuff in .NET and so is this list. It leans towards the software developer wanting to be a tech-lead, architect or CTO.

A lot of links goes to Amazon, because I have those books in kindle for the most part and it is easy for me, but get them from anywhere.

THE COMMANDANT'S PROFESSIONAL READING LIST

If USMC Grunts can read five books a year, then so can software developers. https://www.marines.mil/News/Marines-TV/videoid/747008/

@einarwh
einarwh / aoc19.fs
Last active December 19, 2020 23:51
Advent of code 2020. Day 19. F# version.
open System.IO
open System.Text.RegularExpressions
let parseLine (s : string) : (int * string) =
match s.Split(": ") with
| [|s1; s2|] -> (int s1, s2)
| _ -> failwith <| sprintf "malformed line %s" s
let rec parse (ruleNo : int) (resolved : Map<int, string>) (textMap : Map<int, string>)
: (string * Map<int, string>) =