SumitM

31.4K posts

SumitM banner
SumitM

SumitM

@SumitM_X

16 years In IT | Author of a bestselling Java book | All Books links in the pinned tweet https://t.co/NmsenbKiBW

Katılım Haziran 2021
1.1K Takip Edilen45.3K Takipçiler
Sabitlenmiş Tweet
SumitM
SumitM@SumitM_X·
I have launched four digital products via Topmate and Gumroad so far . Given the constant inquiries through DMs for purchase links, I have decided to consolidate all relevant links in one place for your convenience. Individual Products: Cracking The Java Interview With Sumit: Topmate: topmate.io/interviewswith… Gumroad: msumit.gumroad.com/l/qturr HARD COPY: store.pothi.com/book/sumit-m-c… Cracking the MERN Interviews: Topmate: topmate.io/interviewswith… Gumroad: msumit.gumroad.com/l/imzsr Cracking The Reactjs Interviews: Topmate: topmate.io/interviewswith… Gumroad: msumit.gumroad.com/l/qqheh Cracking The React Native Interviews: Topmate: topmate.io/interviewswith… Gumroad: msumit.gumroad.com/l/yakhkx Bundle Offers: All in One Bundle (Java + Reactjs + MERN + React Native): Topmate: topmate.io/interviewswith… Gumroad:msumit.gumroad.com/l/ypbkul (Java book pdf + Java Interviews in 2026 webinar Recording): Topmate: topmate.io/interviewswith… (Java + Reactjs + MERN): Topmate: topmate.io/interviewswith… Gumroad: msumit.gumroad.com/l/rikeb Reactjs + MERN Bundle: Topmate: topmate.io/interviewswith… Gumroad: msumit.gumroad.com/l/rikeb Java + MERN Bundle: Topmate: topmate.io/interviewswith… Gumroad: msumit.gumroad.com/l/psdfn Java + Reactjs Bundle: Topmate: topmate.io/interviewswith… Gumroad: msumit.gumroad.com/l/gvabt Thank you for your interest and support. 🙏
English
8
3
64
59.9K
SumitM
SumitM@SumitM_X·
Group bullies in office are the weakest people...
English
2
2
36
2.4K
SumitM
SumitM@SumitM_X·
As a developer, Have you ever wondered : WHY downloading 1GB is fast but uploading 1GB feels slower?
English
7
1
48
7.6K
SumitM retweetledi
SumitM
SumitM@SumitM_X·
Got this message today and it truly made my day. Cracking 5 offers including Goldman Sachs with a 100% hike is no small feat. This is exactly why I started writing: to simplify tough concepts and give devs the confidence to walk into interviews prepared. Thank you 🙏 and Wishing you more success ahead !
SumitM tweet media
English
10
16
649
51.3K
SumitM
SumitM@SumitM_X·
One good interview can change your life...
English
6
1
77
4.2K
Hitesh Choudhary
Hitesh Choudhary@Hiteshdotcom·
Say Hi if you catch me up here
Hitesh Choudhary tweet mediaHitesh Choudhary tweet media
English
26
5
642
30.8K
SumitM
SumitM@SumitM_X·
France or Spain ?
English
13
0
4
3K
SumitM
SumitM@SumitM_X·
GET was working and POST failing with CORS... Tech Lead said CORS isn't needed for GET thats why ... Is the Tech Lead correct or is there some other reason ?
English
10
2
44
6.4K
SumitM
SumitM@SumitM_X·
Can an exception be thrown from the static block?
English
8
1
49
7.5K
SumitM
SumitM@SumitM_X·
I know a 3 years experienced guys getting 48 LPA ... And also a TCS top performers who reached ~12 LPA in 7 years ...
English
3
3
209
19K
SumitM
SumitM@SumitM_X·
Java + Reactjs - still the best Full stack combo for Job opportunites..
English
13
6
184
11.2K
SumitM
SumitM@SumitM_X·
Very few can explain the difference between : git reset --soft git reset --mixed git reset --hard
English
5
7
81
8.7K
SumitM
SumitM@SumitM_X·
Tech Lead says : "password is safe when base64 encoded...." Do you feel safe with this Tech Lead?
English
20
1
48
10K
SumitM
SumitM@SumitM_X·
Tech Lead says: "DELETE should always .. always return the deleted object." Whats your reply ?
English
18
0
81
17.6K
SumitM
SumitM@SumitM_X·
As a Java Dev, do you know the Difference Between Shallow Copy vs Deep Copy? You’re copying an object, but are you copying the object or just the pointer?
English
9
3
40
5.9K
SumitM
SumitM@SumitM_X·
Your microservice owns its DB. You did a small schema change which is now breaking 3 other services. What went wrong and what architectural smell is this? And what's your next step ?
English
8
5
59
9.2K
SumitM
SumitM@SumitM_X·
Preparing for Microservices Interviews? Don’t miss these 5 Transaction & Consistency terms: 1. Saga (Choreography / Orchestration) 2. TCC (Try-Confirm-Cancel) 3. 2PC (Two-Phase Commit) 4. Idempotency 5. Eventual Consistency
English
3
19
210
9.1K
SumitM
SumitM@SumitM_X·
What is the difference between git tag And git branch ?
English
7
0
45
8.5K
SumitM retweetledi
SumitM
SumitM@SumitM_X·
Amdocs ✅️
SumitM tweet media
English
4
1
105
7.4K
Siddhesh
Siddhesh@codersidd·
@SumitM_X It's the Decorator Pattern. ​Just like a classic decorator wraps an object to dynamically add behavior without altering the base class, an HOC wraps a React component to inject props or state.
English
1
0
8
563
SumitM
SumitM@SumitM_X·
As a React developer , if you have been using Higher Order Components (HOCs) in React, you have unknowingly used one of the most classic design patterns in software engineering... Do you know which one ?
English
4
2
46
9.4K
SumitM
SumitM@SumitM_X·
As a backend developer, if asked - What is the difference between an API Gateway and a Load Balancer? Cover these points: 1. What is a Load Balancer? Imagine you have 3 copies of the same app running. A Load Balancer sits in front and distributes user traffic evenly to all 3. It makes sure no single app is overloaded. If one app crashes, it skips that and sends traffic to the others. Purpose: Distribute load across multiple same servers Common in monolithic or replicated service setups 2. What is an API Gateway? Now imagine you have different microservices: /login → Login Service /orders → Order Service /cart → Cart Service An API Gateway acts as a single entry point. It checks the path and routes to the right service. It also does authentication, logging, rate limits, etc. Purpose: Route traffic to different services, add features Common in microservice architecture 3. Can they be used together? Yes! You first hit the API Gateway Then inside, it may use a Load Balancer to talk to multiple instances of one microservice.
English
6
16
110
6.8K