Skip to content

Mathspp Blog

A blog dedicated to mathematics and programming!

  • By Rodrigo Girão Serrão
  • Based in Portugal
  • Roughly two posts per week
  • First post on

Posts per month

Data for this chart is available in the table below
Posts per month
Month starting Posts
Jul 2022 4
Aug 2022 1
Sep 2022 3
Oct 2022 0
Nov 2022 1
Dec 2022 1
Jan 2023 6
Feb 2023 2
Mar 2023 8
Apr 2023 5
May 2023 4
Jun 2023 4
Jul 2023 12
Aug 2023 7
Sep 2023 6
Oct 2023 4
Nov 2023 22
Dec 2023 2
Jan 2024 8
Feb 2024 3
Mar 2024 5
Apr 2024 5
May 2024 6
Jun 2024 1
Jul 2024 8

Any gaps could be due to errors when fetching the blog’s feed.

Most recent posts

Customising object creation with __new__
The dunder method __new__ is used to customise object creation and is a core stepping stone in understanding metaprogramming in Python. Customising object creation with __new__ The dunder method __new__ is a static method that …
On , 500 words
Case-insensitive string class
This article shows how you can create a case-insensitive string class using some basic meta programming with the dunder method __new__. Case-insensitive string class In this article we want to implement a case-insensitive string class, …
On , 489 words
Module itertools overview
This article briefly describes the iterators available in the Python module itertools and how to use them. Module itertools overview The Python module itertools contains 20 tools that every Python developer should be aware of. …
On , 477 words