I love the first day of the year because it reminds me that one of life's greatest joys is to begin.
Living is beautiful because it means to start, always, at every moment. You're always on time to have a life that makes you happy every morning.
Happy New Year, lovely folks!
01.01.2026 11:44
👍 0
🔁 0
💬 0
📌 0
I don't know why software engineers and developers dream of retiring to become farmers. I just would like a house by the sea and a small boat to sail.
31.12.2025 13:21
👍 0
🔁 0
💬 1
📌 0
Requirements
Understanding system requirements in distributed system design.
7. How to define system requirements and go from vague problems to clear solutions.
newsletter.francofernando.com/p/requiremen...
8. How RAFT solves the consensus problem in distributed systems: a breakdown that every engineer can understand.
newsletter.francofernando.com/p/the-raft-c...
30.12.2025 22:09
👍 0
🔁 0
💬 1
📌 0
This year, I wrote 51 articles (one per week) about fundamental topics like:
- Algorithms and Data Structures
- System Design and Distributed Systems
- Programming and Software Engineering
Here are the 10 most read ones (links below):
30.12.2025 22:09
👍 0
🔁 0
💬 1
📌 0
But once you've made it simple, your software is as flexible as it can be: easy to modify, or even rewrite, to suit any changes in the requirements.
28.12.2025 13:28
👍 0
🔁 0
💬 0
📌 0
In software development, the simplest solution is almost never the most obvious, so reaching it is actually not trivial. In many cases, you have to design big parts of your software at least twice.
28.12.2025 13:28
👍 1
🔁 0
💬 1
📌 0
Be honest with yourself about what you want and work hard to get it.
Be meaningful and intentional with your time.
That is the only way to ensure that you give yourself the best odds.
31.08.2025 14:54
👍 1
🔁 0
💬 0
📌 0
The DRY Principle
Why every software engineer should care about repetition: solutions that actually works.
When they hear "Don't Repeat Yourself," 99 out of 100 developers think of copy-paste code.
But DRY is about much more than that. The main focus is on knowledge, not code.
I wrote more about how to use DRY without falling into common traps here:
newsletter.francofernando.com/p/the-dry-pr...
29.08.2025 11:27
👍 1
🔁 0
💬 0
📌 0
We all go through 2 significant steps in our careers:
- Junior to mid-level developer
- Senior developer
In the first one, it matters more how well you code. "Nobody" will still listen to you.
But in the second stage and beyond, how well you communicate matters way more.
28.08.2025 15:46
👍 2
🔁 0
💬 0
📌 0
One thing I'm glad I paid a lot of attention to during my CS studies is "networking fundamentals".
Almost every project I've worked on has needed that background, and I've seen others who didn't have it have a hard time.
26.08.2025 14:39
👍 2
🔁 0
💬 0
📌 0
A Critical Guide to Content Delivery Networks
How do CDNs work, and how to get the most benefits out of them.
How do CDNs speed up content delivery on the internet?
You can read my in-depth article on how CDNs work under the hood and best practices when using them here:
newsletter.francofernando.com/p/a-critical...
22.08.2025 09:11
👍 3
🔁 0
💬 0
📌 0
If you work hard and are nice to people, you can get very far in life.
Being kind and honest to everyone is a skill that isn't given enough credit.
21.08.2025 15:10
👍 1
🔁 0
💬 0
📌 0
If you're not interested in your craft, you'll struggle to get a better software engineer.
Getting passionate isn't a gift, but a choice.
Pick a path, and get into it. Skills don't just come from a desire.
19.08.2025 14:46
👍 2
🔁 1
💬 0
📌 0
Life is not at extremes but somewhere in the middle:
- Work out for 45 minutes instead of 3 hours
- Do deep work for 2-3 hours instead of 10
- Get 8 hours of sleep instead of 4
Take breaks, think, and live. We're humans, not robots.
17.08.2025 14:19
👍 4
🔁 1
💬 0
📌 0
Requirements
Understanding system requirements in distributed system design.
If you're in a system design interview, and you start brainstorming technical stuff, you're on the wrong path.
You're missing the most critical part of the design process: requirements.
I wrote about how requirements impact your design choices here:
newsletter.francofernando.com/p/requiremen...
15.08.2025 08:56
👍 0
🔁 0
💬 0
📌 0
If you want to become a better programmer, there is no secret sauce.
You just need to spend a lot of time coding and building projects.
14.08.2025 15:13
👍 0
🔁 0
💬 0
📌 0
Do you know what a database does most of the time?
This classic paper makes a very detailed profile of a transactional database, figuring out what each CPU command does.
Only 10% of the CPU instructions do critical work.
The rest are spread out fairly evenly between:
13.08.2025 11:38
👍 1
🔁 1
💬 1
📌 0
Read the paper here:
nms.csail.mit.edu/~stavros/pub...
13.08.2025 11:38
👍 0
🔁 0
💬 0
📌 0
There are many places where such overhead comes from, but all are necessary for a standard database to work.
Having a faster database is a matter of trade-offs:
no buffers -> keep the database entirely in memory
no locking or latching -> single-threaded system
no logs -> replication.
13.08.2025 11:38
👍 0
🔁 0
💬 1
📌 0
- Taking care of buffers (moving pages from a cache pool to the disk)
- Locking (row-level locks that manage concurrent multiple transactions)
- Latching (lightweight locks keep the internals of data structures safe)
- Logging (writing down operations before they happen so they can be recovered)
13.08.2025 11:38
👍 0
🔁 0
💬 1
📌 0
Do you know what a database does most of the time?
This classic paper makes a very detailed profile of a transactional database, figuring out what each CPU command does.
Only 10% of the CPU instructions do critical work.
The rest are spread out fairly evenly between:
13.08.2025 11:38
👍 1
🔁 1
💬 1
📌 0
Building something alongside your 9-5 job is rewarding, but it's important to have limits.
There will be times when your body will take breaks for you if you don't take breaks when you need them.
09.08.2025 21:12
👍 1
🔁 0
💬 0
📌 0
How to Become a Confident Software Engineer
Six critical steps to build your confidence as a software engineer.
It took me 5+ years to become confident in my skills as a software engineer.
But I could have done it in less time if I had followed the 6 pieces of advice in the article below:
francofernando.substack.com/p/how-to-bec...
08.08.2025 08:30
👍 2
🔁 0
💬 0
📌 0
One thing people new to DSA often miss is that time complexity differs from speed.
O(N^2) algorithms can definitely outperform O(logN) algorithms for small input sizes.
07.08.2025 17:29
👍 0
🔁 0
💬 0
📌 0
I see many CVs from experienced engineers that put too much emphasis on their educational background.
But the truth is that once you get your first job, no one cares what school you went to.
Once you start building a small track record, things like your edu aren’t so important.
05.08.2025 16:56
👍 1
🔁 0
💬 0
📌 0