Software Developer specializing in Web and Mobile | MERN, React Native & NextJS

Joined May 2022
4 Photos and videos
🚨 I crashed my own Java server (on purpose). Here’s how it went 👇 #Java #Backend #Coding
1
1
16
Upgraded to multi-threaded. Handled 100 clients in parallel 🎉 …until I hit 10k reqs. Threads aren’t free → CPU screamed & server crashed.
1
11
Fixed it with ExecutorService & thread pools. 600k requests. Smooth. Scaling unlocked ✅ 👉 Full story code: devanshsk.hashnode.dev/crash…

9
🚨 I crashed my own Java server (on purpose). 1. Single-threaded → froze on 2nd client 2. Multi-threaded → died at 10k reqs 3. Thread pool → smooth at 600k Best backend lesson before Spring Boot. Full story code 👇devanshsk.hashnode.dev/crash… #Java #Backend #Coding

1
25
Learning alone doesn’t scale. So I’m learning in public. From React → Fullstack w/ Spring Boot, I’ll share wins, bugs, & lessons. First blog here 👇 devanshsk.hashnode.dev/learn…

1
17
✨ Launched my developer portfolio! Built with Next.js, TypeScript, Tailwind, and micro-interactions. Check it out at devanshsk.me Feedback with ❤️ appreciated! #ReactJS #NextJS #WebDev #Frontend #Portfolio #IndieHackers #BuildInPublic #100DaysOfCode

3
1
29
🚀 Thrilled to earn my Java Full Stack certification from Wipro TalentNext with 93% aggregate score! Mastered all milestones in the program. Ready to build and innovate! 💻✨ #JavaDevelopment #WiproTalentNext #TechJourney #Java
2
19
This weekend, I have learned about #monorepo and CI/CD basics from 0-100 cohort 2 by @kirat_tw So here's my learnings in this thread below. #Coding #programming #devops #javascript #React #learning #MonorepoMagic #100xDevs
1
1
68
Project Setup 🏗️ 1. Created my first Turborepo project. 🌐 2. Initialized Next.js, React, and Express apps—all under one repository! 🏢 3. Setup common reusable modules for our apps. #fullstack #Turborepo #ProjectSetup
1
1
52
Modules Galore 📦 1. Added and configured new modules to my React and Express apps in Turborepo. 🔄 2. Created Reusable components and ensured efficient code organization! 🌈 #CodeModularity #Turborepo #devops
1
19
Just created a new blog using @hashnode. It's fast ⚡️, free 🎉, and highly customisable ⚙️. Get yours here: hashnode.com 🌎: devanshsk.hashnode.dev

16
🚀 Excited to share my learnings on #reactnative: 1️⃣ Linking: Easily open external URLs or deep links within your app. Perfect for integrating with other apps or websites. 2️⃣ TouchableOpacity: Implement touchable components with ease. #javascript #typescript #appdevelopment
3
27
Dived into #ReactNative today! 🚀 Explored Flexbox for layouts, ScrollView for handling overflow, and adding local & remote images. Can't wait to apply these in my projects! #Coding #Learning #javascript #typescript #programming #mobileappdevelopment #appdevelopment
2
2
51
Today I have solved these following problems on leetcode: 1️⃣ Leaders in an array 2️⃣ Longest consecutive subsequence #Coding #javascript #DSA #algorithms #Java
2
15
Hey Folks, Today I started learning React Native for mobile app development. The various things I have learned are as follows: 1. About React Native vs React.js 2. Environment Setup for React native 3. Creating our first app and tinkering with StyleSheets. #reactnative #react
1
37
Today i solved 2149 Rearrange Array Elements by Sign in leetcode and here's my learnings The initial approach is to use 2 arrays to store positive and negative numbers and then rearrange later. This takes the time and space complexity of O(2N) and O(N).
1
1
10
Then i optimized this solution further as i observed that the positives and negatives are going at even and odd indexes. So i used pointers to track the indexes and insert the elements in a single pass. This reduces the time complexity to O(N).
9