Mahmoud
@JavaDataPro
Java developer/scala spark
Dit vind je misschien leuk
شب یلدا برای همه ایرانیان عزیز مبارک باشه انشالله سلامتی و خوشی و خرمی را برای همه ارزومندم
You can use them also as configuration record in Spring Boot (very convenient)... etc. like this.. or using them related to JSON/YAML etc.
I’m a Java backend developer working with Spring Boot and microservices. If you’re building something and need help with backend logic, APIs, or data persistence, feel free to DM.
If anyone has Java backend programming work, I can do it for them for free.
If anyone has Java backend programming work, I can do it for them for free.
زن خواجه نصیرالدین طوسی ناراحت هست ،میگه من صورتی میخواستم نه طوسی
Hello dear friends, I wanted to let you know that if you're working on Java projects or dealing with database challenges,I'm here to help. Feel free to send me your specific issues - I'll do my best to find solutions or simpler approaches for you Looking forward to collaborating
چرا موقع استفاده از testContainers همیشه از اول ساخته میشه و در نتیجه با کندی مواجه می شویم ؟
💡 Concurrent Chaos List<Integer> list = new ArrayList<>(List.of(1,2,3)); for(Integer i : list) list.remove(i); // ConcurrentModificationException 😱
🔥 StringBuilder vs += Madness String s = ""; for(int i=0;i<1000;i++) s += i; // Slow & memory heavy 💡 Use StringBuilder for big loops!
🐍 Floating Point Fun System.out.println(0.1 + 0.2 == 0.3); // false 😅
💥 Null Pointer Surprise 💥 String s = null; System.out.println(s.length()); // Boom! 😱 NullPointerException
💥 Java “Surprise” Bug 💥 ``` List<Integer> list = new ArrayList<>(); list.add(1); list.add(2); list.add(3); for (Integer i : list) { list.remove(i); // Boom! 😱 } ``` Result? ConcurrentModificationException! Why? You can’t modify a list while looping over it.
💡 Java Tip: Stop using += in loops! Strings are immutable → each += creates a new object. ✅ Use StringBuilder for loops: faster & memory-friendly! #Java #CodingTips #Performance
United States Trends
- 1. The JUP 156K posts
- 2. The PENGU 154K posts
- 3. Good Monday 25.4K posts
- 4. Lorraine 10.1K posts
- 5. #oasis 1,957 posts
- 6. Victory Monday N/A
- 7. #MondayMotivation 24.4K posts
- 8. #smoothie 1,806 posts
- 9. Ravens 65.7K posts
- 10. 60 Minutes 74.9K posts
- 11. #syntax 1,647 posts
- 12. #dash 1,842 posts
- 13. Bari Weiss 63.3K posts
- 14. Greenland 7,557 posts
- 15. Patriots 129K posts
- 16. Drake Maye 28.5K posts
- 17. Lamar 28.9K posts
- 18. Harbaugh 12.2K posts
- 19. Henry 61.7K posts
- 20. TOP CALL 8,458 posts
Something went wrong.
Something went wrong.