Claim 35 Post Templates from the 7 best LinkedIn Influencers

Get Free Post Templates
Alexandre Zajac

Alexandre Zajac

These are the best posts from Alexandre Zajac.

7 viral posts with 26,958 likes, 766 comments, and 724 shares.
7 image posts, 0 carousel posts, 0 video posts, 0 text posts.

πŸ‘‰ Go deeper on Alexandre Zajac's LinkedIn with the ContentIn Chrome extension πŸ‘ˆ

Best Posts by Alexandre Zajac on LinkedIn

How to reply to:
β€œWhen is it going to be fixed?β€œ


Bad:

❌ β€œIt's done when it's done.β€œ
β†’ No predictability.

❌Micromanagement
β†’ Kills focus & trust.


Better:

βœ… Devs:
β†’ Pad estimates (1hr β†’ 2hr), block focus time, and communicate early.

βœ… Managers:
β†’ Ask β€œblockers?β€œ not β€œdone yet?β€œ, use async updates, buffer deadlines.

βœ… Both:
β†’ Timebox fixes (1hr try β†’ reassess).


What's your way?


~~~
πŸ‘‰πŸ» Join 50,001+ software engineers getting curated system design deep dives, trends, and tools (it's free):
βž” https://lnkd.in/dkJiiBnf

~~~

If you found this valuable:

πŸ‘¨πŸΌβ€πŸ’» Follow Alexandre Zajac
πŸ”– Bookmark this post for later
♻️ Repost to help someone in your network


#softwareengineering #coding #programming
Post image by Alexandre Zajac
How to reply to:
β€œWhen is it going to be fixed?β€œ


Bad:

❌ β€œIt's done when it's done.β€œ
β†’ No predictability.

❌Micromanagement
β†’ Kills focus & trust.


Better:

βœ… Devs:
β†’ Pad estimates (1hr β†’ 2hr), block focus time, and communicate early.

βœ… Managers:
β†’ Ask β€œblockers?β€œ not β€œdone yet?β€œ, use async updates, buffer deadlines.

βœ… Both:
β†’ Timebox fixes (1hr try β†’ reassess).


What's your way?


~~~
πŸ‘‰πŸ» Join 50,001+ software engineers getting curated system design deep dives, trends, and tools (it's free):
βž” https://lnkd.in/dkJiiBnf

~~~

If you found this valuable:

πŸ‘¨πŸΌβ€πŸ’» Follow Alexandre Zajac
πŸ”– Bookmark this post for later
♻️ Repost to help someone in your network


#softwareengineering #coding #programming
Post image by Alexandre Zajac
The Sunk Cost Fallacy Explained:


Riding the wrong train just because you already paid for the ticket.

Wrong path?

Exit fast.


The longer you wait, the costlier the fix.


~~~
πŸ‘‰πŸ» Join 50,001+ software engineers getting curated system design deep dives, trends, and tools (it's free):
βž” https://lnkd.in/dkJiiBnf

~~~

If you found this valuable:

πŸ‘¨πŸΌβ€πŸ’» Follow Alexandre Zajac
πŸ”– Bookmark this post for later
♻️ Repost to help someone in your network
Post image by Alexandre Zajac
The Sunk Cost Fallacy Explained:


Riding the wrong train just because you already paid for the ticket.

Wrong path?

Exit fast.


The longer you wait, the costlier the fix.


~~~
πŸ‘‰πŸ» Join 50,001+ software engineers getting curated system design deep dives, trends, and tools (it's free):
βž” https://lnkd.in/dkJiiBnf

~~~

If you found this valuable:

πŸ‘¨πŸΌβ€πŸ’» Follow Alexandre Zajac
πŸ”– Bookmark this post for later
♻️ Repost to help someone in your network
Post image by Alexandre Zajac
2023: β€œPrompt engineers are going to replace software engineers...β€œ

2025: β€œYeah, rightβ€œ 🀣

~~~

πŸ‘‰πŸ» Join 48,001+ software engineers getting curated system design deep dives, trends, and tools (it's free):
βž” https://lnkd.in/dkJiiBnf

~~~

If you liked this:

πŸ‘¨πŸΌβ€πŸ’» Follow Alexandre Zajac for more memes and SWE content
♻️ Repost to make someone laugh in your network
πŸ”– Bookmark this post to see if it ages well
Post image by Alexandre Zajac
Service availability 101:


0. 99.00000% ~ 3d 15 39m downtime/year.
↳ Basic reliability. Single points of failure are still a risk.

1. 99.90000% ~ 8h 45min downtime/year.
↳ The standard for many SaaS apps. Requires basic redundancy and failover.

2. 99.99000% ~ 52m 35s downtime/year.
↳ Multi-region setups, automated failover, and health checks become important.

3. 99.99900% ~ 5m 15s downtime/year.
↳ Real-time monitoring, active-active systems, and chaos engineering are now needed.

4. 99.99990% ~ 31s downtime/year.
↳ Hyper-specialized systems, near-perfect automation, and advanced traffic management.

5. 99.99999% ~ 3s downtime/year.
↳ You’re now in the realm of NASA-level reliability. I don't even know at this point.

But adding one more β€œ9β€œ every time is exponentially more difficult.

Most services provide a decent availability SLA, but it gets really hard to go beyond 3 nines.

An additional layer to understand is that:

A 12-hour downtime at once can be much more dangerous than 144 downtimes of 5 minutes spread over the year.

And timing matters:

Downtime during peak hours (e.g., Black Friday for Amazon for example) is way worse than during off-peak times.

Service availability is not just about hitting a number:
↳ It’s about understanding the impact of downtime, the trade-offs in engineering effort, and the business priorities behind it.


What did I miss?


~~~

πŸ‘‰πŸ» Join 46,001+ software engineers getting curated system design deep dives, trends, and tools (it's free):
βž” https://lnkd.in/dkJiiBnf

~~~

If you found this valuable:

πŸ‘¨πŸΌβ€πŸ’» Follow Alexandre Zajac
πŸ”– Bookmark this post for later
♻️ Repost to help someone in your network
Post image by Alexandre Zajac
Code is read more often than it is written.

8 patterns to improve code readability:


0. Avoid novelty:
↳ Stick to familiar patterns instead of using new or complex constructs.
βœ… This makes your code easier to understand because readers don’t have to learn new styles.

1. Simplify conditionals:
↳ Keep your conditional checks short and straightforward.
βœ… Avoid mixing different logical operators like `&&` and `||` in the same condition.

2. Minimize nesting:
↳ Avoid deeply nested logic by breaking it into smaller functions.
βœ… Flattening your code makes it easier to follow and debug.

3. Group logic:
↳ Break long chains of functions or iterators into smaller steps.
βœ… Use helper functions or intermediate variables to make the flow clearer.

4. Use distinct variable names:
↳ Choose descriptive and unique names for your variables.
βœ… Avoid names that look similar, like `i` and `j`, to prevent confusion.

5. Keep variables short-lived:
↳ Declare variables as close to their usage as possible.
βœ… This reduces the mental effort needed to track their values.

6. Write smaller functions:
↳ Keep your functions small and focused on a single task.
βœ… Smaller functions are easier to read, test, and reuse.

7. Avoid gotos:
↳ Use gotos only when absolutely necessary.
βœ… They can make your code harder to follow and debug.


What practices makes code easier to read?


~~~

πŸ‘‰πŸ» Join 48,001+ software engineers getting curated system design deep dives, trends, and tools (it's free):
βž” https://lnkd.in/dkJiiBnf

~~~

If you found this valuable:

πŸ‘¨πŸΌβ€πŸ’» Follow Alexandre Zajac
πŸ”– Bookmark this post for later
♻️ Repost to help someone in your network

#softwareengineering #coding #programming
Post image by Alexandre Zajac

Related Influencers