A brief introduction to this blog

Hi everyone reading this blog,


Before starting to publish articles, I would like to give brief introduction about "Why this blog?".


When I explored Internet for knowledge about C++, OO Design, Design patterns, OS, Threads, Synchronization, etc, I found good articles, but I felt things were scattered and confusing at times.


Example 1: Mutex Vs. Semaphore - Some claim that Binary semaphore is same as Mutex and some argue that they are not same.
Example 2: Design patterns - Even with simple examples in many articles, difficult to grasp and think where to apply when a problem is given.


With this, I got an idea as to why not me start a blog and stitch all the information from various books, articles and Internet sites together and create a blog to give in depth information about below topics and not restricted to:


1. C++
2. STL
3. Design patterns
4. UML
5. OO Design
6. OS Concepts
7. Linux
8. Synchronization


With the above introduction, I would like to start off with articles about Synchronization. Every week (On Sunday),  I would post the articles. All your feedback and comments are welcome.


Happy Learning!

Comments

Popular posts from this blog

Synchronization primitives: Mutex and Semaphore (Serialization & Mutex problems using Semaphore) - Article 6

Synchronization: Discussion about Mutex and Semaphore - Article 1

Copy constructor in C++ (Part 2)