noor.guru

Welcome to my cyber home.

Here, I share my knowledge so it may help somebody out there (maybe you?)

Latest Posts

Java Best Practices 01 | Static Factory Methods Over Constructors

Static Factory Methods Consider using Static Factory Methods Instead of Constructors The static factory method is a method that returns an instance of the class. Example In this example, we will build some HTML elements using Java. Here is the base class. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 class HtmlElement { private final String tag; private final String content; public HtmlElement(String tag, String content) { this....

Scalability 03 | Scale Vertically (Vertical Scaling)

Once your application (website) reaches the limits of your server, you should decide how to scale. In this post, we will focus on Vertical Scaling only....

Scalability 02 | Start Small (Single-Server Configuration)

In this post, we will take a step back, and discuss how could we start small and simple with our website before considering any scalability options, and we will discuss when should we start considering them...

Scalability 01 | What Is Scalability (Scalability in a Nutshell)?

Scalability usually means the ability to handle more users, clients, data transactions, or requests without affecting the user experience....

1-16 Increment and Decrement Operators in C++ (Part 3) | معاملات الزيادة والنقصان (الجزء الثالث)

1-15 Increment and Decrement Operators in C++ (Part 2) | معاملات الزيادة والنقصان (الجزء الثاني)

1-14 Increment and Decrement Operators in C++ (Part 1) | معاملات الزيادة والنقصان (الجزء الأول)