Recent Posts

My favorite tilde keybindings

1 minute read

I’m a big fan of the ~ (tilde) key and I make heavy use of it every day. That’s why I’ve never been fond of keyboards that move its position for whatever rea...

Learning OCaml: Module Aliases

1 minute read

OCaml is famous for allow you to do a lot of things like modules. Like really a lot! Advanced features like functors, aside, it’s really common to either ali...

Learning OCaml: Parsing Data with Scanf

2 minute read

In my previous article I mentioned that OCaml’s Stdlib leaves a lot to be desire when it comes to regular expressions. One thing I didn’t discuss back then w...

Learning OCaml: Regular Expressions

4 minute read

One of the things that bothered me initially in OCaml was the poor support for working in regular expressions in the standard library. Technically speaking, ...