Mayank

21.6K posts

Mayank banner
Mayank

Mayank

@Mayank_Msd

AI & Tech Enthusiast | UI Dev @frido_official | Sharing practical AI learnings & product insights | Chelsea Fan

Pune, India Katılım Nisan 2011
264 Takip Edilen1.9K Takipçiler
Sabitlenmiş Tweet
Mayank
Mayank@Mayank_Msd·
If you’re in tech let’s connect 🤝 AI • dev • product • startups Always happy to learn and share.
Mayank tweet media
English
4
1
13
1.8K
baba yaga
baba yaga@S_N_SH_E_·
Go is SIMPLE Rust is SAFE Python is FLEXIBLE Java is RELIABLE C++ is POWERFUL JavaScript is ?
English
21
1
27
978
Mayank
Mayank@Mayank_Msd·
@javarevisited Amazon focus on scaling horizontally with load balancing and using queues to smooth traffic spikes.
English
0
0
0
56
Javarevisited
Javarevisited@javarevisited·
Interviewer: How does Amazon handle millions of orders during Black Friday without crashing?
English
2
1
8
1.6K
Mayank
Mayank@Mayank_Msd·
@SumitM_X Rebase replay your 50 commits on top of the latest main for a clean, up-to-date history.
English
0
0
0
120
SumitM
SumitM@SumitM_X·
Your feature branch has 50 commits. Main has moved ahead with 300 commits. What will you do: Rebase your branch or merge main into your branch?
English
16
0
28
5.1K
Sarthak
Sarthak@Sarthak4Alpha·
Interviewer: Do you know system design? Candidate: Yes. Interviewer: Design a system for 100 users. Candidate: Microservices, load balancer, queues… Interviewer: You’re solving for millions. I asked for 100.
English
13
3
29
1.3K
Mayank
Mayank@Mayank_Msd·
Interviewer: Your database is slow but CPU is normal What’s wrong?
English
0
0
1
22
baba yaga
baba yaga@S_N_SH_E_·
Pick ONE for the next 5 years 👇 A) JavaScript B) Python C) Java D) C++
English
25
0
29
746
Mayank retweetledi
Mayank
Mayank@Mayank_Msd·
Interviewer: User clicks “Pay” twice in milliseconds How do you prevent duplicate payment?
English
1
1
3
65
Mayank
Mayank@Mayank_Msd·
@adxtyahq node_modules casually eating more space than your OS 😄
English
1
0
0
151
aditya
aditya@adxtyahq·
Just removed all the .next and node modules folders from my Mac These things had consumed over 100GB of storage.
English
16
1
79
2.2K
Mayank
Mayank@Mayank_Msd·
@alifcoder Autonomous learning sounds great guardrails matter more.
English
0
0
0
81
Alif Hossain
Alif Hossain@alifcoder·
🚨Claude Code just leveled up. This repo gives you a persistent, self-improving workflow for coding. Claude: → learns from past runs → improves over time → writes better code each iteration Like having an AI that actually gets smarter.
Alif Hossain tweet media
English
8
11
57
3.7K
Aanya
Aanya@xoaanya·
If you had $20 to invest, which would you choose? – Codex – Claude Code Heard Claude hits limits fast… what would you pick?
English
211
4
133
18.6K
Mayank
Mayank@Mayank_Msd·
@Yuchenj_UW Auto attribution boosts visibility, but staying invisible builds developer trust.
English
0
0
0
17
Yuchen Jin
Yuchen Jin@Yuchenj_UW·
I noticed something interesting: Claude Code auto-adds itself as a co-author on every git commit. Codex doesn’t. That’s why you see Claude everywhere on GitHub, but not Codex. I wonder why OpenAI is not doing that. Feels like an obvious branding strategy OpenAI is skipping.
English
194
31
1.5K
135.2K
Nalin
Nalin@nalinrajput23·
to be honest, choose one forever
Nalin tweet media
English
116
5
269
27.5K
Mayank
Mayank@Mayank_Msd·
@S_N_SH_E_ Talent is often just consistency that didn’t get interrupted.
English
0
0
0
15
baba yaga
baba yaga@S_N_SH_E_·
Most developers don’t struggle because tech is hard. They struggle because they keep resetting. – New language – New framework – New roadmap – New “perfect plan” Every 2–3 weeks. So nothing compounds. Meanwhile someone else sticks to: one stack one goal one direction for 6–12 months …and suddenly looks “talented”. Consistency is invisible while you’re doing it.
English
5
1
20
416
Mayank
Mayank@Mayank_Msd·
@__karnati -r deletes recursively, -f forces deletion—so rm -rf removes everything without asking.
English
0
0
1
362
Sri
Sri@__karnati·
Quick Linux question for beginners 👇 What's the difference between these two commands? rm filename rm -rf foldername What does the -r and -f flag actually do? 🤔
English
7
0
28
3.7K
Mayank retweetledi
Mayank
Mayank@Mayank_Msd·
20 git commands every developer should know: • git clone • git pull • git push • git fetch • git rebase • git stash • git cherry-pick • git reset • git revert • git log mastering git = saving hours
English
0
1
1
65
Mayank
Mayank@Mayank_Msd·
@SumitM_X Use a database transaction with row level locking so only one request can book the last seat.
English
0
0
0
35
SumitM
SumitM@SumitM_X·
Two users hit "Book Now" at the exact same millisecond on Booking and Expedia. Only 1 seat left. Both requests reach your system. How do you make sure ONLY ONE ticket gets booked?
SumitM tweet media
English
25
4
102
22.8K
Mayank
Mayank@Mayank_Msd·
@kritikakodes It’s better to focus on the companies and impact rather than grouping by religion.
English
0
0
0
522
Kritika
Kritika@kritikakodes·
Major global companies founded by Jewish: 1) Meta - Mark Zuckerberg 2) Google - Larry page & Sergey Brin 3) OpenAI - Sam Altman 4) Whatsapp - Jan Koum 5) Oracle - Larry Ellison 6) Dell - Michael Dell
English
12
1
53
77.7K
Sri
Sri@__karnati·
Your branch is 200 commits behind main What will you do?? Merge or Rebase
English
11
1
27
6.1K
Mayank
Mayank@Mayank_Msd·
@javarevisited Because a Java Stream can be used only once after the first forEach, it’s closed, and reusing it throws an error mostly
English
0
0
1
601
Javarevisited
Javarevisited@javarevisited·
Java Stream Interview ☕ What will happen here? Stream<Integer> stream = Stream.of(1,2,3); stream.forEach(System.out::println); stream.forEach(System.out::println); A. Works B. Exception Why?
English
7
2
49
8.4K