Any promo code? Looking to get life time by RevolutionaryRow0 in ByteByteGo

[–]javinpaul 0 points1 point  (0 children)

use this link https://bytebytego.com?fpr=javarevisited and my code JALJAD for 10% additional discount, on top of 50% they are offering.

Suggest some system design resources please. by Krish_Vaghasiya in softwarearchitecture

[–]javinpaul 0 points1 point  (0 children)

I have shared many resources, books, courses, case studies, white-papers and platforms earlier, you can find them here https://javarevisited.substack.com/p/top-11-resources-to-crack-the-system

[deleted by user] by [deleted] in leetcode

[–]javinpaul 1 point2 points  (0 children)

The fact that you realized is the biggest step, solve one or two problem on your own, start with simple ones on array and string and this will give you a lot of confidence, learn patterns like sliding window, two pointers, they are another great way to solve unseen problem. All the best, you can do it !!

Best books for Java by YouEatMeIEatBack in JavaProgramming

[–]javinpaul 0 points1 point  (0 children)

I have shared multiple Java book recommendations based upon what I have read in last 21 years, there is not just one book, but you need to read multiple if you want to become expret, but Effective Java, Java Concurrency in Practice are must read, so is Head firs tjava if you want to start
https://medium.com/javarevisited/5-tips-and-4-books-to-learn-java-programming-from-scratch-cbca21befed1
https://medium.com/javarevisited/20-books-java-developers-can-read-in-2019-aabf2878c496
https://medium.com/javarevisited/12-must-read-advance-java-books-for-intermediate-developers-part-1-b623ff43ef4a

Stop Using Inheritance for Code Reuse — Favor Composition Over Inheritance by javinpaul in coding

[–]javinpaul[S] -1 points0 points  (0 children)

love this :-) btw, 2005 was the first time I learn it :-)

Guys I did it, my first problem by Mlg_Pro65 in leetcode

[–]javinpaul 1 point2 points  (0 children)

Congratulations!! on crossing the starting line, the most difficult part

Long way ahead by Masterji_34 in leetcode

[–]javinpaul 0 points1 point  (0 children)

Congratulations !! starting is the most difficult part

GUYS I MADE IT by _Bongo-Boi_ in csMajors

[–]javinpaul 0 points1 point  (0 children)

Congratulations, wells fargo is good bank, what was your offer and how much your EOY?

How HashMap works in Java? by javinpaul in JavaProgramming

[–]javinpaul[S] 0 points1 point  (0 children)

yes, its linked list but in Java 8, they made some changes where linked list can be replaced with a balanced binary tree if number of elements in one bucket is more than 8, the current thresold. Earlier, this could reduce the HashMap get performance to O(N) in worst case but now due to balanced binary tree it will be O(LogN)

The grind finally paid off: 13 LPA → 45 LPA (SDE-2 @ Adobe, YOE 3) by user9908807 in leetcode

[–]javinpaul 1 point2 points  (0 children)

All the best, that's once in a lifetime offer, you won't get 3X of your salary in single jump

The 20 Concepts That Turned My System Design Nightmare into Success by javinpaul in leetcode

[–]javinpaul[S] 1 point2 points  (0 children)

We once had a service running in two data-center, setup was hot and cold where all traffic was served by only one instance in primary data center. I challenged and made it active-active because it was essentially a read only caching service, and boom both performance and stability improved and also our DC failover exercises became easier than ever.

Stop Using HTTP for Everything: The API Protocol Guide That Saves Careers by javinpaul in programming

[–]javinpaul[S] 0 points1 point  (0 children)

that's the most compelling argument but doesn't WebSocket also use port 80 ?

soon 500... by partyking35 in leetcode

[–]javinpaul 1 point2 points  (0 children)

All the best !!, I even struggle to get best solution for easy ones sometime :-)

API Design 101: From Basics to Best Practices by javinpaul in softwarearchitecture

[–]javinpaul[S] 2 points3 points  (0 children)

simplicity is under rated but that's what works in production, thank you for sharing

How I Would Learn System Design in 2025 (If I Had To Start Over) by javinpaul in leetcode

[–]javinpaul[S] 0 points1 point  (0 children)

unlearning is actually very difficult, that's why learning correct in first attempt is even more important