Day 0x00000000 of manifesting a job.
-> Remote, open to relocation in Schengen area.
-> C/C++, assembly, systems programming, compilers, PL design, ...
CV: https://t.co/0DlmasX3Ca
@PThorpe92 Oh lmao, I have created a pr generator while I was testing our product that extracts eng. metrics from github. So, that's why I have 1k closed PRs.
Thanks!
Haskell learning update:
- [1,2,3] is syntatic sugar for 1 : 2 : 3 : []
- pattern matching in Haskell is hard to get used to (for me)
first :: [a] -> Maybe a
first [] = Nothing
first (x:_) = Just x
but (x:_) is pretty cool
- guards combined with pattern matching is fire