Rishabh Kesarwani — Coder • Designer • Machine Learning Engineer

First Jekyll

07 April 2022 jekyll
Reading Time: < 1 minute

Jekyll is a static site generator, an open-source tool for creating simple yet powerful websites of all shapes and sizes. From the project's readme:

Jekyll is a simple, blog aware, static site generator. It takes a template directory [...] and spits out a complete, static website suitable for serving with Apache or your favorite web server. This is also the engine behind GitHub Pages, which you can use to host your project’s page or blog right here from GitHub.

Find out more by visiting the project on GitHub.

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.