Consistency + Hard Work = Results ๐
While working on my #100DaysOfCode DSA challenge, Iโm excited to share that I secured ๐ฅ 3rd Prize in Best Project Presentation at LNCT Group of Colleges.
Every day, solving problems, building projects, and improving step by step.
๐ Todayโs DSA problem, solution, and output are in the image below.
#DSA #DeveloperJourney #Coding #ProjectPresentation
TCS NQT 2026 Aspirants โ Follow me ๐ฅ
I share:
โข Most asked JS Interview Questions
โข Problem โ Solution threads
โข OOP concepts with real examples
โข Motivation for low percentage students
Strong coding + logic > 60% marks
Drop ๐๏ธ + your @ if youโre preparing
Iโll follow back everyone who replies!
Whoโs in? ๐
If youโre a student and understand Proxy and Reflect objects in JavaScript, youโre already ahead of many
others.
Best of luck for your bright future!
theoretically we can create a custom implementation similar to Promise behavior using callbacks and state management.
It may not support every internal JavaScript engine feature exactly like native Promise, but we can build a simplified version.
Basic idea is:
maintain states like pending, fulfilled, rejected
store success and failure callbacks
execute them after async completion
Something like:
class MyPromise {
constructor(executor) {
this.successCallback = null;
this.errorCallback = null;
const resolve = (value) => {
if (this.successCallback) {
this.successCallback(value);
}
};
const reject = (error) => {
if (this.errorCallback) {
this.errorCallback(error);
}
};
executor(resolve, reject);
}
then(callback) {
this.successCallback = callback;
return this;
}
catch(callback) {
this.errorCallback = callback;
return this;
}
}
Usage:
JavaScript
new MyPromise((resolve, reject) => {
setTimeout(() => {
resolve("Done");
}, 1000);
}).then((data) => {
console.log(data);
});
But native Promises are much more complex internally because they handle:
microtask queues
chaining
async scheduling
error propagation
Promise.all
Promise.race
and many edge cases.
@Swiggy Hum parasites hain bhai, breakfast mein CJI ka bataya hua 'sukh-chain' aur system ka sukoon khaate hain. Kam se kam aapki tarah delivery partner ka commission aur customer ka paisa toh nahi hazam karte! ๐
@Swiggy Hum toh ghar walo ke taane aur career ki tension khate hain... par aap toh system ke wo "parasites" ho jo delivery boy ka commission aur customer ka sukoon dono kha jate ho. ๐
Frontend developers are slowly becoming backend developers.
A few years ago, frontend meant:
HTML, CSS, JavaScript, fixing UI bugs, and blaming APIs when things broke ๐
Now? We deal with SSR, authentication, caching, cookies, performance optimization, server actions, SEO etc.
At this point, some frontend developers know more infrastructure than they realize.
Modern frontend development is no longer just about building interfaces.
Itโs becoming about understanding the entire experience โ from server to screen.
Preparing for MERN stack interviews can feel overwhelming when you are just starting out
That is exactly why I created this beginner friendly carousel with 50 important MERN Stack interview questions and answers that are commonly asked in interviews โจ
In this carousel, you will learn concepts related to
MongoDB ๐
Express.js โ๏ธ
React.js โ๏ธ
Node.js ๐ข
REST APIs ๐
Authentication ๐
JWT ๐ก๏ธ
Git and GitHub ๐
Deployment ๐
And many more
I explained every answer in a simple and easy to understand way so that beginners can learn without confusion
Whether you are a student, fresher, or aspiring full stack developer, this post will help you revise important concepts quickly before interviews ๐ฏ
๐ Save this post for your next MERN stack interview and share it with your developer friends who are preparing too
Adaptability is the most important skill in tech right now. ๐
This 2025 vs. 2026 breakdown perfectly highlights how fast our daily toolkits are evolving. We are shifting from generalist platforms to precision AI tools whether itโs streamlining code, managing spreadsheets with Claude, or pushing the boundaries of DSLR quality image generation with Nano Banana 2.
As a mobile developer, staying ahead of this curve is how I ensure the React Native apps I build are efficient, scalable, and modern. You canโt build the products of tomorrow using the workflows of yesterday.
Which of these 2026 tools is your favorite so far?
๐ป I got rejected by Infosys criteria
๐ป I got rejected by Amazon
๐ป I got rejected by TCS HACKQUEST
๐ป I got rejected by TCS NQT criteria
๐ป I got rejected by Tudip criteria
๐ป I got rejected by Amdocs criteria
It wasnโt just one rejection. It kept happening again and again.
When you keep hearing โNo,โ itโs easy to start doubting yourself.
But I didnโt give up.
- I worked on becoming better every day.
- I fixed my Naukri and Resume
- I rebuilt my data engineering concepts
- I improved my SQL and core subjects
- I worked on real data projects
- I practiced mock interviews