Myself

367 posts

Myself

Myself

@myself__alien

MERN Stack Developer | JavaScript Enthusiast | Building scalable web apps , Cohort-3 student

Depression 가입일 Nisan 2025
95 팔로잉13 팔로워
Myself
Myself@myself__alien·
@HelloVyom The data will be stored in physical data centers in the specific locations
English
0
0
0
8
VG🌪️
VG🌪️@HelloVyom·
INTERVIEWER: WHERE DOES THE 'CLOUD' ACTUALLY STORE YOUR DATA?
English
12
0
21
3.4K
Myself
Myself@myself__alien·
@IamAroke Indexing searches the data very fastly in database , whereas cache reduces the load on the database without hitting the datbase
English
0
0
0
90
Austin
Austin@IamAroke·
Backend Interview: Since indexes make queries faster, why do we still need caching?
English
30
15
320
65.2K
Myself
Myself@myself__alien·
@EOEboh TLS Handshake is missing , need to check the valid certificates and also firewall enabling for the port
English
0
0
1
152
Captain-EO 👨🏾‍💻
The request succeeds on HTTP Fails silently on HTTPS No error in the logs No network error either What did we miss?
English
16
4
103
26.7K
Myself
Myself@myself__alien·
@astrosumitbajaj 24-04-2003 Time - around 11.45 pm Place : Somandepalli, Andhra Pradesh
English
0
0
0
24
Sumit Bajaj (Astrologer)
Sumit Bajaj (Astrologer)@astrosumitbajaj·
Today for next 45 mins to an hour or so, you may ask question by providing your Date, time and place of birth here. Shall try my best to provide answer or give a one-liner prediction based on horoscope. Kindly Comment and RT the quoted tweet using hashtag #astrosumitbajaj #astrosumitbajaj #Astrology
Sumit Bajaj (Astrologer)@astrosumitbajaj

Sridevi’s Death — Astrology Explains What Really Happened Most people accepted “accidental drowning.” But when you decode her horoscope layer by layer… ➡️ Timing ➡️ Place ➡️ Cause Everything was precisely indicated. Let’s go deep 👇 #Sridevi #astrology #astrosumitbajaj

English
1.2K
297
558
227.5K
Myself
Myself@myself__alien·
@cyber_razz DOS , The attacker sends large number of systems at a time it causes disturbance in the system , to avoid this we need to use Rate limiter and captcha ...
English
0
0
0
9
Abdulkadir | Cybersecurity
SECURITY+ KNOWLEDGE CHECKPOINT An attacker sends a large number of requests to a server, causing it to become slow or unavailable to legitimate users. What type of attack is this? A. Phishing B. Man-in-the-Middle C. Denial-of-Service (DoS) D. Privilege escalation
English
86
16
147
10.9K
Aanya
Aanya@xoaanya·
As a Web Developer which comes first?? -Frontend -Backend
English
151
4
168
21.7K
Myself
Myself@myself__alien·
@mysticwillz Client → WebSocket → Kafka → Consumer → Redis → WebSocket Broadcast → Clients
English
0
0
0
170
THE CODE SCIENTIST
THE CODE SCIENTIST@mysticwillz·
You're in a software engineering interview They ask: Design a Location Tracking  application Here's how (Answer in 5 points concise thread)
English
2
8
75
12.4K
Myself
Myself@myself__alien·
@__karnati check the df -h and go to the directory and check the du -sh | sort -rh it will give the size of folders in descending order
English
0
0
1
440
Sri
Sri@__karnati·
You’re SSH’d into a server and need to quickly find the biggest files eating up disk space. What command do you run first? Ever wasted time on this in production? Share your commands below👇👇 Tag someone who’s learning Linux!
English
11
9
106
20K
Myself
Myself@myself__alien·
@Inosukeei_coder Due to eventual consistency or cache might not be updated
English
1
0
1
3
Inosuke
Inosuke@Inosukeei_coder·
Interviewer: two users open your app. one sees updated data, the other sees old data. why?
English
38
2
73
6.9K
Kritika
Kritika@kritikakodes·
TECH PUZZLE: I store your data, but I’m not your code. You query me, but I don’t speak. Who am I?
English
51
5
68
5.2K
Myself
Myself@myself__alien·
@SumitM_X Refresh token will keep you stay logged in the website till it gets expired
English
0
0
1
32
SumitM
SumitM@SumitM_X·
As a developer, have you ever wondered: You open an app after months… and you are still logged in Who is keeping that session alive all this time?
English
18
2
78
13.9K
Myself
Myself@myself__alien·
@SumitM_X If we don't return any data then it will be fine to go with 204 response code , if after deletion anything needs to send as a response then we can use 200
English
0
0
1
2.7K
SumitM
SumitM@SumitM_X·
Tech Lead tells you in API request : DELETE /users/{id} Return 204 instead of 200 after successful deletion .. What's your reply ?
English
70
12
630
268.1K
Myself
Myself@myself__alien·
@SumitM_X LIKE 'xyz%' is faster because of the prefix
English
0
0
0
148
SumitM
SumitM@SumitM_X·
Which is faster in DB: LIKE 'xyz%' or LIKE '%abc'?
English
20
4
171
50.8K
Myself
Myself@myself__alien·
@javarevisited Strong consistency ( the data will be updated synchronously used in transaction management) at a time whereas eventual consistency means asynchronous update of the data ( generally used in social media platforms)
English
0
0
0
198
Javarevisited
Javarevisited@javarevisited·
What is the difference between: Strong Consistency vs Eventual Consistency Give a real-world example.
English
10
1
26
4.2K
Myself
Myself@myself__alien·
@suni_code They block the seats whenever a person tries to select the seats , so that other person will not select the same seat at a time
English
1
0
1
293
Suni
Suni@suni_code·
Serious question: How does BookMyShow prevent two people from booking the same seat at the same time?
Suni tweet media
English
18
3
154
38.2K
Myself
Myself@myself__alien·
@ennycodes The latency issue due to the large distance between the client and server , so checks from which server the response is coming and add the CDN (edge servers ) and add geo load balancer to route the requests to the nearest server
English
0
0
0
158
𝕯𝖊𝖛𝕰𝖓𝖓𝖞
Interviewer: Your app loads in 1.2s locally but 5s for users in production. Same build. No errors. What’s your first move?
English
14
1
39
4.7K
Jaydeep
Jaydeep@_jaydeepkarale·
Two queries run concurrently: -- Transaction 1 SELECT balance FROM accounts WHERE id = 1; -- Transaction 2 UPDATE accounts SET balance = balance - 100 WHERE id = 1; Your Lead says: "No issues here." What’s your reply?
English
5
1
19
2K
Myself
Myself@myself__alien·
@javarevisited It returns the data of the users whose id's are not null and not equal to 10
English
0
0
0
14
Javarevisited
Javarevisited@javarevisited·
"Interview Question: You have 100 users. 10 were referred by ID 10. 20 have a NULL referred_by_id. Query: SELECT count(*) FROM users WHERE referred_by_id != 10; What is the result? (Most people say 90. Most people are wrong.)"
English
7
0
10
2.9K
Myself
Myself@myself__alien·
@javarevisited DNS is the one who does the job ( getting the ip address using the domain name )
English
0
0
0
77
Javarevisited
Javarevisited@javarevisited·
Interviewer: You type a URL in your browser. And the page loads. But you never typed the server’s IP address. How?
English
5
0
10
2.4K
Javarevisited
Javarevisited@javarevisited·
90% get this wrong. How many objects are created? String s = new String("Hello"); 1? 2? 3? Explain.
English
5
2
42
12.5K