Mahdi M.
A Blog about Software Development

A Blog about Software Development

Follow
homeContactAbout

How does Stable Diffusion work?

Sep 20, 20231 min read

Stable Diffusion has always looked like a miracle for me. I could (to some extent) comprehend how a LLM like ChatGPT works and generates text. I did...

How does Stable Diffusion work?

How to write an efficient scheduler in Java - Part 2

Sep 9, 20222 min read

In part1 I explained there are two options to have a scheduler in Java: SchedulerExecutorService and DelayQueue. I decided to go with the second one...

How to write an efficient scheduler in Java - Part 2

How to write an efficient scheduler in Java - Part 1

Aug 26, 20222 min read

While working on my latest project, SolidInbox there are many cases where I need to run one or more jobs, at specific times without needing user...

How to write an efficient scheduler in Java - Part 1

How I lost 60 pounds in 6 months

Dec 26, 20214 min read

How it started I used to be obese. Actually, when I entered my weight in the NHS BMI calculator about 6 months ago, I was "officially" obese. No...

How I lost 60 pounds in 6 months

Strategies for Error Handling

Dec 18, 20213 min read

One of the important topics in programming courses is error handling. Usually, they talk about what is an error and explain stuff like...

Strategies for Error Handling

Functional Programming in Java

Dec 5, 20211 min read

Practical tips for writing FP in Java ยท Recently, I have been trying to write more functional code in Java. Now, Java does not have built-in support for...

Functional Programming in Java