Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 1.7 KB

index.md

File metadata and controls

50 lines (35 loc) · 1.7 KB
layout title description
default
Alex Molas
Hello, world, I'm Alex, and this is my blog, where I talk about math, machine learning, and other things like cooking.

{% assign totalPosts = site.posts | size %} {% assign totalWords = 0 %}

{% for post in site.posts %} {% assign postWords = post.content | number_of_words %} {% assign totalWords = totalWords | plus: postWords %} {% endfor %}

Hello, I'm Alex

Hi, welcome to my website! I use this tiny part of the internet to share my thoughts about machine learning, maths, cooking, philosophy, and other random things. I write for several reasons that I've explained here. Since 2020 I've wrote {{ totalPosts }} posts and {{ totalWords }} words.

I try to keep the site style quite minimal because I want to focus on the content and not on the container. Some people have told me it's too minimal, but I don't care. If you like it you can find the source code in my repo. Feel free to use it as you prefer.

If you want to hire me here you have my CV.


Latest posts

{% assign postCount = 0 %} {% for post in site.posts %} {% if postCount < 5 %}

  • {{ post.date | date: "%b %d %Y" }} · {{ post.title }}
  • {% assign postCount = postCount | plus: 1 %} {% endif %} {% endfor %}

    Favourite posts

    {% for post in site.posts %} {% if post.favourite %}

  • {{ post.date | date: "%b %d %Y" }} · {{ post.title }}
  • {% endif %} {% endfor %}