RSSAmplifier

Blog

A CODERS JOURNEY

Life lessons from a coder

acodersjourney.comRSS feed ↗10 posts

Latest posts

AI Exam Tutor: A Reusable Prompt for Any Certification

AI Exam Tutor — Reusable Prompt A Coder s Journey The post AI Exam Tutor: A Reusable Prompt for Any Certification first appeared on A CODERS JOURNEY .

Temperature vs Top P in Amazon Bedrock — What’s the Actual Difference?

Temperature vs Top P in Amazon Bedrock — What s the Actual Difference? The post Temperature vs Top P in Amazon Bedrock — What’s the Actual Difference? first appeared on A CODERS JOURNEY .

Top 20 C++ multithreading mistakes and how to avoid them

Top 20 C++ Multithreading Mistakes and How to Avoid Them (2026) Updated for C++20 The post Top 20 C++ multithreading mistakes and how to avoid them first appeared on A CODERS JOURNEY .

Understanding Quick Sort for coding interviews

In the last three posts we looked at selection, bubble and insertion sort respectively. While it s critical to know these basic sorting techniques, it s unlikely you d be asked to code one of these up for your next Microsoft/Google interview unless The post Understanding Quick Sort for coding interviews first appeared on A CODERS JOURNEY .

Understanding Insertion Sort for coding interviews

In the last post we looked at how to really understand Bubble Sort by solving it on paper, one step at a time. We ll take the same approach for Insertion Sort. As with most fundamental sorting algorithms, the chances of The post Understanding Insertion Sort for coding interviews first appeared on A CODERS JOURNEY .

Understanding Bubble Sort for coding interviews

In the last post we looked at how to really understand Selection Sort by solving it on paper, one step at a time. We ll take the same approach for Bubble Sort. While bubble sort is not one of the algorithms The post Understanding Bubble Sort for coding interviews first appeared on A CODERS JOURNEY .

Understanding selection sort for coding interviews

This is the first post in a series where we look at various sorting algorithms you ll need to know for your next coding interview. I struggled with understanding basic sorting algorithms when i first encountered them in college. I tried The post Understanding selection sort for coding interviews first appeared on A CODERS JOURNEY .

Generate binary numbers using a queue

Problem Generate binary numbers from 1 to any given number, n , using a queue. Function Signature List string GenerateBinaryNumber(int n) Example Input and Output n = 1 = (1) n = 3 = ( 1, 10, 11) Problem Solving Strategy Assuming The post Generate binary numbers using a queue first appeared on A CODERS JOURNEY .

How to send email using C# and Outlook.com

This is a note to myself. I recently had to write this code for the third time in my life in the last 11 years because I did not save it somewhere consumable. So putting it on my blog for The post How to send email using C# and Outlook.com first appeared on A CODERS JOURNEY .

Top 25 C++ API design mistakes and how to avoid them

For many C++ developers, API Design probably makes number 3 or 4 on their priority list. Majority of developers flock to C++ for the raw power and control it provides. Consequently, performance and optimization is what occupies the thoughts of The post Top 25 C++ API design mistakes and how to avoid them first appeared on A CODERS JOURNEY .