Levi Aggarwal

515 posts

Levi Aggarwal banner
Levi Aggarwal

Levi Aggarwal

@404xdev

Expert@Codeforces , ICPC Regionalist , Open Source Contributor.

Bergabung Eylül 2022
135 Mengikuti77 Pengikut
Tweet Disematkan
Levi Aggarwal
Levi Aggarwal@404xdev·
@MahekPatel24 PRACTICE PRACTICE PRACTICE Watching youtube videos/copy pasting your code is not PRACTICE
English
0
2
3
880
Levi Aggarwal
Levi Aggarwal@404xdev·
@SumitM_X yarrw , yeh toh sab aata hai . Bas naukri nahi mil pata hai
हिन्दी
0
0
0
61
SumitM
SumitM@SumitM_X·
As a Backend dev , how many concepts can you explain from below : 1. Event-Driven Architecture 2. Saga Pattern 3. CQRS (Command Query Responsibility Segregation) 4. Event Sourcing 5. Circuit Breaker Pattern 6. Distributed Tracing 7. CAP Theorem 8. Idempotency 9. Data Sharding 10. API Gateway
English
6
8
88
2.9K
Levi Aggarwal
Levi Aggarwal@404xdev·
my iphone phone screen not working 🥲🥲
English
0
0
1
13
Levi Aggarwal me-retweet
sunny madra
sunny madra@sundeep·
“If your $500K engineer isn’t burning at least $250K in tokens, something is wrong.”
English
652
729
8.3K
2.4M
VG
VG@HelloVyom·
If you’re buying this shit for 1.8 lakh in 2026 then sorry but you ain’t gonna make it
VG tweet media
English
12
0
29
2.1K
Levi Aggarwal
Levi Aggarwal@404xdev·
@Zanies07 @HelloVyom yes , we need to focus our energy on olympiads rather than JEE / NEET. and then we will start seeing good results. Currently all of our students are preparing for only compeitative exams.
English
1
0
1
11
Rightlyso
Rightlyso@Zanies07·
@404xdev @HelloVyom Well most Indians start cp in college and stop it after they get good placements. You can't compete with Chinese where even IMO teams have all LGMs
English
1
0
1
11
VG
VG@HelloVyom·
just 10 contests and man became an International Master 🫡
VG tweet media
English
8
3
71
4K
divyansh
divyansh@Divyansh91565·
I already started govt job preparation btw
Google AI@GoogleAI

We’re launching a brand new, full-stack vibe coding experience in @GoogleAIStudio, made possible by integrations with the @Antigravity coding agent and @Firebase backends. This unlocks: — Full-stack multiplayer experiences: Create complex, multiplayer apps with fully-featured UIs and backends directly within AI Studio — Connection to real-world services: Build applications that connect to live data sources, databases, or payment processors and the Antigravity agent will securely store your API credentials for you — A smarter agent that works even when you don't: By maintaining a deeper understanding of your project structure and chat history, the agent can execute multi-step code edits from simpler prompts. It also remembers where you left off and completes your tasks while you’re away, so you can seamlessly resume your builds from anywhere — Configuration of database connections and authentication flows: Add Firebase integration to provision Cloud Firestore for databases and Firebase authentication for secure sign-in This demo displays what can be built in the new vibe coding experience in AI Studio. Geoseeker is a full-stack application that manages real-time multiplayer states, compass-based logic, and an external API integration with @GoogleMaps 🕹️

English
7
0
28
940
SumitM
SumitM@SumitM_X·
User changes password. Login with old password still works for a while. Why?
English
18
0
50
11.2K
Rightlyso
Rightlyso@Zanies07·
@HelloVyom @404xdev Avg Indian is like pupil on codeforces bro. If you a specialist you are already massively above avg
English
0
0
0
16
Levi Aggarwal
Levi Aggarwal@404xdev·
@HelloVyom I have not seen any e lafda between these two guys 😭😭. I think its been 3-4 years
English
1
0
9
5.2K
VG
VG@HelloVyom·
what a time, what a time, what a time!!!
VG tweet mediaVG tweet media
English
11
0
195
37.6K
VG
VG@HelloVyom·
Students, which of these companies do you think has an easier interview?
VG tweet mediaVG tweet media
English
11
0
24
4.2K
Shravani
Shravani@shrav_10·
Idk about other gfs, but I will let my boyfriend dress however he wants to, he can also go out with his friends after 6 pm! progressive girlfriend 💅
English
27
3
132
4K
divyansh
divyansh@Divyansh91565·
Personal observation on sleep: 7 hours >> 8 hours >> 6 hours >> 3–4 hours >>>>>>>>>> 5 hours 5 hours somehow feels worse than even 3-4 sometimes..
English
11
2
71
2.4K
Moses Koledoye
Moses Koledoye@MoVonLagos·
Reading the replies, I don't think people realize that serving in order of milliseconds at the scale of billions of users requires optimisations at different layers of the OSI model, not merely a fast lookup algorithm which is only a small part of the whole piece.
SumitM@SumitM_X

As a developer, Have you ever wondered : You type a Gmail username and UI instantly shows "Username already taken"... There are millions of users globally How is this check so fast?

English
10
14
188
35.1K
Levi Aggarwal
Levi Aggarwal@404xdev·
@Divyansh91565 I remember solving a problem based on the same concept in icpc chennai regionals last year 🫡🫡
English
1
0
1
77
divyansh
divyansh@Divyansh91565·
So I was solving a graph problem and the core intuition turned out to be just checking whether the graph is bipartite or not (plus a few extra conditions)... So I thought maybe a article kind of , on this.. If you already understand how BFS/DFS works, here's a simple way to check bipartiteness: Bipartite Graph Check - > Most of you already know BFS/DFS. > But many graph problems reduce to a simple question: > Can we divide nodes into 2 groups such that no edge connects nodes of the same group? If yes then graph is bipartite Let's understand the core Idea: Instead of thinking in groups, think in colors: > Assign each node a color (0 or 1) > For every edge -> colors must be different So the problem becomes: Can we 2-color the graph without conflicts? Basic Working: 1. Start from any node: 2. Assign color = 0 3. Their neighbors = 1 4. Continue using BFS/DFS While traversing: If node is unvisited -> assign opposite color If already visited and same color -> NOT bipartite Why This Works? Bipartite => No odd cycle 1) Even cycle -> works fine 2) Odd cycle -> forces same color conflict First-Principles Thinking behind it: This boils down to these points At any node: 1. You only care about previously visited neighbors 2. Constraint: neighbor must have opposite color 3. So each step is just: -> Check conflict -> Assign color -> Continue That's it.
divyansh tweet media
English
10
5
65
2.4K
Tuki
Tuki@TukiFromKL·
🚨 Cursor just dropped Composer 2.. their own AI model.. not Claude.. not GPT.. their own.. and it beats Claude Opus on coding benchmarks.. at a fraction of the cost.. a code editor with 50 people just outperformed a $30 billion AI lab.. at coding.. which is supposed to be their whole thing.. the vibe coding era just got an upgrade..
Cursor@cursor_ai

Composer 2 is now available in Cursor.

English
292
263
4.6K
1M
Levi Aggarwal
Levi Aggarwal@404xdev·
@TukiFromKL If they will train the robot from my recording , will the robot also learn watching youtube shorts like me ???
English
0
0
1
400
Tuki
Tuki@TukiFromKL·
🚨 Let me make sure you understand what DoorDash just did.. They built a $70 billion company by paying people $3 to deliver food in the rain.. Now they're paying those same people to film themselves doing chores.. mopping floors.. folding laundry.. loading dishwashers.. Not for content.. for AI training data.. they're paying you to teach the robot how to be you.. so they don't have to pay you anymore.. First they paid drivers to prove people would order food to their door.. then they started testing drones and robots to replace the drivers.. Now they're paying people to record their own bodies doing physical tasks so the AI can learn the movements... this is the Uber playbook on steroids.. > Use the human to build the demand.. > Use the human to train the replacement.. > Remove the human.. DoorDash are paying you to film your own obsolescence.. and you're going to do it.. because rent is due..
Polymarket@Polymarket

JUST IN: DoorDash rolls out new app that pays people to film themselves doing chores for AI training data.

English
50
321
708
85.8K