Skip to content

Rock and Null

Tech, software and whatever comes to mind.

  • Roughly three posts per month
  • First post on

Posts per month

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

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

Most recent posts

Effortless Django model import & export from the admin panel
Managing data in a Django application can get tedious, especially when you need to add or update a large number of records via the admin interface. The django-import-export library comes to the rescue, offering a …
On , by Mike Yerou, 335 words
Quickly add 2FA (email) for your custom Django admin
Keeping your Django admin panel safe is crucial. Regular passwords are good, but adding another layer of security is even better. That's where Two-Factor Authentication (2FA) comes in.Just for clarity, I will repeat why 2FA …
On , by Mike Yerou, 444 words
How to format the name and surname of a person in Swift
I mean, how hard it can be? Isn't it something like that?struct Person { var name: String var surname: String var fullname: String { "\(name) \(surname)" } }But that's not always the case.Here at Pale …
On , by Michael Mavris, 183 words