Skip to main content

I build systems that scale — without the 3 AM panic calls.

Solution Architect with 18+ years of experience in Node.js, Python, React, and AWS. I write about what I've learned while migrating 400K users, cutting cloud costs by 50%, and mentoring teams that ship.

$1.5M
Revenue Created
150%
Conversion Increase
1.2M
Monthly Traffic
Forbes 2021
Great People Manager

What People Say

From clients, leaders, and teammates I've worked with.

Senior Leader

In my 15+ years at 3Pillar, across nine countries and 2,500+ individuals, Ashish stood out. I foresee him having tremendous impact in whatever he chooses to do.

S
Scott Varho
Senior Leader, 3Pillar Global
View on LinkedIn
Client

One of the brightest and most dependable people on the project. I fully trust Ashish and would gladly work with him again.

D
Dave Gardner
CTO, StraighterLine
View on LinkedIn
🔍

The "Half-Baked Code" Challenge

Think you can spot the memory leak in this Node.js stream implementation? It survived code review, but it will crash the server under load.

server.js
const server = http.createServer((req, res) => {
const stream = fs.createReadStream(filepath);
stream.pipe(res);
// This code passed code review.
// It will crash your server under load.
// Can you spot why?
});

View all challenges →