Niraj Bajaj
nirajbajaj.dev
Niraj Bajaj
@nirajbajaj.dev
::explorer
Today I solved my first LeetCode problem. Small milestone, but an important one for me.
(1/5)
January 6, 2026 at 3:45 PM
🚀 Just completed the Learn HTML & CSS course on @scrimba.bsky.social
Really solid foundation in HTML, CSS, and Flexbox. (1/5)
December 29, 2025 at 5:56 PM
Reposted by Niraj Bajaj
Programming Joke of the Day: Dec 22, 2025 #programming #programminghumor #programmingjokes #html #CSS
December 22, 2025 at 2:53 PM
Built a simple landing page as part of a Scrimba assignment. Used plain HTML/CSS and paired it with a product render I made in Blender. A small exercise in bringing different skills together.

themeticulousdot.netlify.app

#WebDev #LearnInPublic #CSS #HTML #FrontendDevelopment
December 26, 2025 at 10:11 AM
I started learning JavaScript about a month ago and decided to combine online tutorials with books to build a stronger foundation.
(1/8)
December 21, 2025 at 1:13 PM
Built a business card as an HTML/CSS challenge after a @scrimba.bsky.social module taught by Per Borgen.

Hands-on work revealed layout and spacing details that tutorials often gloss over.

nirajbajaj.dev
December 18, 2025 at 6:45 PM
function introduction() {
console.log(this.value);
}

const about = {
a: { value: "Name: Niraj Bajaj" },
b: { value: "Birthdate: 27 November 1998" },
c: { value: "Country: India" }
};

introduction.call(about.a);
introduction.call(about.b);
introduction.call(about.c);

console.log(""); (1/n)
November 13, 2025 at 6:35 PM