Rishabh Kesarwani — Coder • Designer • Machine Learning Engineer

category Programming

Elite Coders

16 September 2023 code
Reading Time: 11 minutes

Outstanding coders exhibit a distinctive methodology in crafting code, a hallmark of their expertise in the software development realm. Their approach involves meticulous attention to detail, efficient problem-solving, and a commitment to writing clean, maintainable, and highly functional code.

“Any fool can write code that a computer can understand. Good programmers write code that humans can understand.” – Martin Fowler.

Hello World!

23 July 2019 cpp jekyll
Reading Time: < 1 minute

Hi, welcome to this brand-new blog. In this blog, I intend to share posts related to technology, design and my other interests. This post reminds me of the first program I wrote in my CS101 class. It looked something like this.

#include<iostream>
using namespace std;
int main() {
cout << "Hello World";
return 0;
}

When I ran the program and saw the output, I was amazed. Since then, I have loved Software Engineering.