andreyka26_se
?
Media is too big
VIEW IN TELEGRAM
It is really simple simple, so I was able to record it with explanation without editing in 2 mins
β€7π4
andreyka26_se
Decided: 1. Microsoft 2. Ticketmaster + video
Since MS interview article is done, soon soon the new one will be dropped.
π₯9β€3
If you want to improve English - highly recommended for reading:
https://nammemememe.substack.com/p/london-is-the-capital-of-great-britain
https://nammemememe.substack.com/p/london-is-the-capital-of-great-britain
π7β€3
Daily (183 day streak)
Again, amazing easy problem for binary tree, definitely not a nonsense, go and collect your coins.
https://leetcode.com/problems/balanced-binary-tree/description/?envType=daily-question&envId=2026-02-08
#leetcode #medium
Again, amazing easy problem for binary tree, definitely not a nonsense, go and collect your coins.
https://leetcode.com/problems/balanced-binary-tree/description/?envType=daily-question&envId=2026-02-08
#leetcode #medium
π4β€1
It is already 1 year since I decided to leave Microsoft and started preparing for interviews. Cannot believe I would ever be solving Leetcode FOR ONE FUCKING YEAR.
Now I just need 190 days to get leetcode cap, and then I will stop doing nonsense/bullshit daily problems, only good ones
Now I just need 190 days to get leetcode cap, and then I will stop doing nonsense/bullshit daily problems, only good ones
π₯27π5β€1
andreyka26_se
Since MS interview article is done, soon soon the new one will be dropped.
Today 'm dropping Ticket master system design
π₯13
Vibe construction workers???
https://www.youtube.com/shorts/wT1WGtQ4Lp4
Yeah, there will be no replacement. Yes, this shit can write code instead of you, research instead of you, BUT, companies are going to pay you for:
1. Validation of its nonsense
2. Taking responsibility. Cause you cannot motivate or punish gpt, but hell yea you can do that to human being
https://www.youtube.com/shorts/wT1WGtQ4Lp4
Yeah, there will be no replacement. Yes, this shit can write code instead of you, research instead of you, BUT, companies are going to pay you for:
1. Validation of its nonsense
2. Taking responsibility. Cause you cannot motivate or punish gpt, but hell yea you can do that to human being
π3
Forwarded from ΠΠ»Π°Π΄ Π’Π΅Π½
https://github.com/anthropics/claudes-c-compiler/issues/1
https://github.com/anthropics/claudes-c-compiler/issues
https://github.com/anthropics/claudes-c-compiler/issues
GitHub
Hello world does not compile Β· Issue #1 Β· anthropics/claudes-c-compiler
Tested inside fedora 43 container, ubuntu 26.04 container and on regular fedora 42 installation, same error Took example directly from README.md GCC is present and can compile code just fine: root:...
β€1
okay, not today, but tomorrow 100050000% we are replaced, just tomorrow (parodying the CEO of an AI company)
π8π5
Daily (184 day streak)
Amazing problem, you can do it easily O(n) space (check hints) or try hard with one algo. But eventually some good problem for DSU understanding and operating. Btw balancing of the trees is basically used most of the database indices.
https://leetcode.com/problems/balance-a-binary-search-tree/description/?envType=daily-question&envId=2026-02-09
#daily #medium
Amazing problem, you can do it easily O(n) space (check hints) or try hard with one algo. But eventually some good problem for DSU understanding and operating. Btw balancing of the trees is basically used most of the database indices.
https://leetcode.com/problems/balance-a-binary-search-tree/description/?envType=daily-question&envId=2026-02-09
#daily #medium
π8
One q, about networks.
If you have private network and you deployed there your app. App is generally sends GET requests to google.com
Assume there is no firewall at google side, as well as no firewall on the machine that forbids external requests.
If you have private network and you deployed there your app. App is generally sends GET requests to google.com
Assume there is no firewall at google side, as well as no firewall on the machine that forbids external requests.
β€2
andreyka26_se
One q, about networks. If you have private network and you deployed there your app. App is generally sends GET requests to google.com Assume there is no firewall at google side, as well as no firewall on the machine that forbids external requests.
Will you be able to establish connection with google.com or no?
Anonymous Poll
39%
Yes
31%
No
30%
See answ
π₯3
andreyka26_se
Will you be able to establish connection with google.com or no?
Answer is no, let me explain you in the next post.
No worries, I also got caught by that. Just for all my 7 years of exp (not that huge, but still) I never thought about IP of the client in terms of TCP/IP stack, however I knew this info.
That's due to at Snow right now we are doing pretty low stuff related to Networking, I guess this is not my first finding XD
No worries, I also got caught by that. Just for all my 7 years of exp (not that huge, but still) I never thought about IP of the client in terms of TCP/IP stack, however I knew this info.
That's due to at Snow right now we are doing pretty low stuff related to Networking, I guess this is not my first finding XD
π₯4
andreyka26_se
Answer is no, let me explain you in the next post. No worries, I also got caught by that. Just for all my 7 years of exp (not that huge, but still) I never thought about IP of the client in terms of TCP/IP stack, however I knew this info. That's due to atβ¦
Explanation:
Let's recall TCP/IP stack that is used for HTTP request.
We have 4 layers:
- application layer (HTTP). Only has http related data (text)
- transport layer (TCP / UDP). Adds source/destination ports + other stuff for delivery guarantees.
- internet protocol layer (IP) - IMPORTANT! Source IP, Destination IP + other information.
- physical layer (Ethernet/wifi) - bits.
Critical point here, that IP layer needs BOTH source/destination ips.
Why it works, when you just access google.com from the laptop? it is connected to Wifi or Mobile network, and both of them work as NAT (network address translation).
How it works (wifi has public IP assigned by ISP, provider that gives you an internet basically). When you send request to google.com wifi intercepts your private ip 192.168.X.X and translates to assigned dynamic IP). Google receives your wifi's dynamically assigned IP. The response later is translated back to your private ip on router lvl
#network
Let's recall TCP/IP stack that is used for HTTP request.
We have 4 layers:
- application layer (HTTP). Only has http related data (text)
- transport layer (TCP / UDP). Adds source/destination ports + other stuff for delivery guarantees.
- internet protocol layer (IP) - IMPORTANT! Source IP, Destination IP + other information.
- physical layer (Ethernet/wifi) - bits.
Critical point here, that IP layer needs BOTH source/destination ips.
Why it works, when you just access google.com from the laptop? it is connected to Wifi or Mobile network, and both of them work as NAT (network address translation).
How it works (wifi has public IP assigned by ISP, provider that gives you an internet basically). When you send request to google.com wifi intercepts your private ip 192.168.X.X and translates to assigned dynamic IP). Google receives your wifi's dynamically assigned IP. The response later is translated back to your private ip on router lvl
#network
π5β€1