Day 29 ✅ Solved “Find Minimum in Rotated Sorted Array” 🔁 ⚡ 0 ms | 💾 41.89 MB Used binary search for an elegant O(log n) solution 🚀 Q: [leetcode.com/problems/find-…] Sol: [github.com/PriyabrataRoy/…] #100DaysOfCode #Java #DSA #Coding #BinarySearch

Priyo8298966333's tweet image. Day 29 ✅
Solved “Find Minimum in Rotated Sorted Array” 🔁
⚡ 0 ms | 💾 41.89 MB
Used binary search for an elegant O(log n) solution 🚀
Q: [leetcode.com/problems/find-…]
Sol: [github.com/PriyabrataRoy/…]
#100DaysOfCode #Java #DSA #Coding #BinarySearch

What a great time it is to be a #Java developer. As my friend @starbuxman pointed out it's easy to write scripts now... Making all of us Java Script developers 🤣

therealdanvega's tweet image. What a great time it is to be a #Java developer. As my friend @starbuxman pointed out it's easy to write scripts now... Making all of us Java Script developers 🤣

Began my LeetCode journey this October and honestly, some problems solve themselves faster than expected! Wrapped this one up in just 50 seconds ✅ Not all questions are this straightforward but when they click instantly it feels great. #LeetCode #Java

abhinavpuri_x's tweet image. Began my LeetCode journey this October and honestly, some problems solve themselves faster than expected!

Wrapped this one up in just 50 seconds ✅

Not all questions are this straightforward but when they click instantly it feels great.

#LeetCode #Java

💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams. ✅ Avoids Object[] and casting. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams. 

✅ Avoids Object[] and casting.
#Java #JavaDev

هذه التغريدة لم تعد متوفرة.

Currently in 4th year. Know only Java for now. Just started learning Spring Boot. Got selected at a small package ,but this is just the beginning. You’ll see me become a full-stack dev in the next few months. Day 1 of #100DaysOfCode #java #react #springboot

's tweet image. Currently in 4th year. Know only Java for now. Just started learning Spring Boot. Got selected at a small package ,but this is just the beginning. You’ll see me become a full-stack dev in the next few months.
Day 1 of #100DaysOfCode 
#java  #react  #springboot

If you are from tech, Lets connect. #tech #Jobs #Java #golang

kartikg_09's tweet image. If you are from tech,

Lets connect.

#tech #Jobs #Java #golang

In previous days solved these problems... #DSA #Java

_FaisalKhan_10's tweet image. In previous days solved these problems...
#DSA #Java

هذه التغريدة لم تعد متوفرة.

Learning react by developing an E-commerce website. So today I build Header Functional component of the website. Day3 of #100DaysOfCode #java #react #springboot

's tweet image. Learning react by developing an E-commerce website.
So today I build Header Functional component of the website.
Day3 of #100DaysOfCode 
#java #react #springboot

Created an MCP Server that will surface all of the content I create to your favorite LLM. I'll talk more about this soon but if you have any questions please leave them below 👇🏻 This was incredibly easy to do thanks to Spring AI 🤖✨ github.com/danvega/dvaas #Java #SpringAI

therealdanvega's tweet image. Created an MCP Server that will surface all of the content I create to your favorite LLM. I'll talk more about this soon but if you have any questions please leave them below 👇🏻

This was incredibly easy to do thanks to Spring AI 🤖✨
github.com/danvega/dvaas

#Java #SpringAI

هذه التغريدة لم تعد متوفرة.

Solved Median of Two Sorted Arrays : Finally understood the intuition for Binary Search approach and why we always perform the search on the smaller array #LeetCode #Java #Coding #DSA

's tweet image. Solved Median of Two Sorted Arrays :
Finally understood the intuition for Binary Search approach and why we always perform the search on the smaller array
#LeetCode #Java #Coding #DSA

هذه التغريدة لم تعد متوفرة.

Ready to listen @alvaro_sanchez sharing his session about revealing the magic 🧙🏼‍♂️🪄 behind #Java annotations #JavaCro

's tweet image. Ready to listen @alvaro_sanchez sharing his session about revealing the magic 🧙🏼‍♂️🪄 behind #Java annotations
#JavaCro

Great talk from @brunoborges at #IBMTechXchange on optimizing Java apps for Kubernetes ☕️☁️ ✅ Reduce image size ✅ Tune JVM & GC ✅ Consider vertical scaling ✅ Right-size your K8s cluster Loved the focus on aligning tech optimizations with business needs! #Java #Kubernetes

devops_thiago's tweet image. Great talk from @brunoborges at #IBMTechXchange on optimizing Java apps for Kubernetes ☕️☁️
✅ Reduce image size
✅ Tune JVM & GC
✅ Consider vertical scaling
✅ Right-size your K8s cluster
Loved the focus on aligning tech optimizations with business needs!
#Java #Kubernetes…
devops_thiago's tweet image. Great talk from @brunoborges at #IBMTechXchange on optimizing Java apps for Kubernetes ☕️☁️
✅ Reduce image size
✅ Tune JVM & GC
✅ Consider vertical scaling
✅ Right-size your K8s cluster
Loved the focus on aligning tech optimizations with business needs!
#Java #Kubernetes…
devops_thiago's tweet image. Great talk from @brunoborges at #IBMTechXchange on optimizing Java apps for Kubernetes ☕️☁️
✅ Reduce image size
✅ Tune JVM & GC
✅ Consider vertical scaling
✅ Right-size your K8s cluster
Loved the focus on aligning tech optimizations with business needs!
#Java #Kubernetes…

هذه التغريدة لم تعد متوفرة.

Day 3 🌅 Woke up at 6️⃣ am 💪 ✅ Finished Spring IOC ✅ Understood JWT authentication flow 🔐 💻 DSA grind: • Two Sum • Two Sum II • Find the Pivot Index After DSA play with her 😄🐱 🐾 #Java #SpringBoot #DSA #CodingJourney

's tweet image. Day 3 🌅
Woke up at 6️⃣ am 💪
✅ Finished Spring IOC
✅ Understood JWT authentication flow 🔐

💻 DSA grind:
• Two Sum
• Two Sum II
• Find the Pivot Index
After DSA play with her 😄🐱 🐾

#Java #SpringBoot #DSA #CodingJourney

💡 Java tip: Use Stream.peek() for debugging in pipelines, not for business logic. ✅ Stream.peek() lets you perform logging or inspection on each element as it flows through a stream without modifying it. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Use Stream.peek() for debugging in pipelines, not for business logic.

✅ Stream.peek() lets you perform logging or inspection on each element as it flows through a stream without modifying it.
#Java #JavaDev

هذه التغريدة لم تعد متوفرة.

🚀 Day 26 of #100DaysOfCode Today I practiced Java DSA with 3 small but useful problems: 1️⃣ Remove the last digit of a number 2️⃣ Check if a number is a power of 2 3️⃣ Swap two numbers without using a third variable #Java #DSA

's tweet image. 🚀 Day 26 of #100DaysOfCode
Today I practiced Java DSA with 3 small but useful problems:
1️⃣ Remove the last digit of a number
2️⃣ Check if a number is a power of 2
3️⃣ Swap two numbers without using a third variable
#Java #DSA
's tweet image. 🚀 Day 26 of #100DaysOfCode
Today I practiced Java DSA with 3 small but useful problems:
1️⃣ Remove the last digit of a number
2️⃣ Check if a number is a power of 2
3️⃣ Swap two numbers without using a third variable
#Java #DSA
's tweet image. 🚀 Day 26 of #100DaysOfCode
Today I practiced Java DSA with 3 small but useful problems:
1️⃣ Remove the last digit of a number
2️⃣ Check if a number is a power of 2
3️⃣ Swap two numbers without using a third variable
#Java #DSA

هذه التغريدة لم تعد متوفرة.

Today I have developed 1.Footer 2. Page Heading 3. Page title 4. Products cards of the website Day4 of #100DaysOfCode #java #react #springboot

's tweet image. Today I have developed 
1.Footer 
2. Page Heading 
3. Page title 
4. Products cards of the website 
Day4 of  #100DaysOfCode 
#java #react #springboot

Day 32 of #100DaysOfCode Solved increasingSubarrays . #LeetCode #Java

sam1368296's tweet image. Day 32  of #100DaysOfCode
 Solved increasingSubarrays . #LeetCode #Java

👑N-Queens 👑 Day 51 of #100DaysOfCode ✅ Solved the N-Queens Problem 💻 It was challenging, but finally cracked it using backtracking and recursion 🚀 Feels amazing to solve this classic problem - honestly, this is my biggest achievement so far in DSA 🙌 #Java #DSA

RishirajSingh_X's tweet image. 👑N-Queens 👑 
Day 51 of #100DaysOfCode ✅
Solved the N-Queens Problem 💻

It was challenging, but finally cracked it using backtracking and recursion 🚀

Feels amazing to solve this classic problem - honestly, this is my biggest achievement so far in DSA 🙌

#Java #DSA

Increase your software development income by leveling up your problem solving skills using algorithms and data structures codersite.dev/book/javaInter… #java #programming #coding #interview #developer #algorithms #codersite


Skill > Info inherent to each class. P start > user input > check with info > if correct send random skill to user. File starts with P. Random skill > new info > save file > load file. User input also connects with end program. #java #Borderlands #randomizer #flowchart


I just published EPAM Senior Java Engineer Interview Questions and Answers medium.com/p/epam-senior-… #Java #Web3


⚖️Your thoughts in the comments. #Java #BackEnd #Programming #Coding

nkamphoa's tweet image. ⚖️Your thoughts in the comments. 
#Java #BackEnd #Programming #Coding

I had a great time at @JavaCro in Rovinj, a unique experience with a lot of great people from the #Java community. A lot of sun, a lot of fun and a lot of Java, with a but of #JakartaEE and @GlassFish! #JavaCro

OndroMih's tweet image. I had a great time at @JavaCro in Rovinj, a unique experience with a lot of great people from the #Java community. A lot of sun, a lot of fun and a lot of Java, with a but of #JakartaEE and @GlassFish! #JavaCro
OndroMih's tweet image. I had a great time at @JavaCro in Rovinj, a unique experience with a lot of great people from the #Java community. A lot of sun, a lot of fun and a lot of Java, with a but of #JakartaEE and @GlassFish! #JavaCro
OndroMih's tweet image. I had a great time at @JavaCro in Rovinj, a unique experience with a lot of great people from the #Java community. A lot of sun, a lot of fun and a lot of Java, with a but of #JakartaEE and @GlassFish! #JavaCro
OndroMih's tweet image. I had a great time at @JavaCro in Rovinj, a unique experience with a lot of great people from the #Java community. A lot of sun, a lot of fun and a lot of Java, with a but of #JakartaEE and @GlassFish! #JavaCro

Day 1 of #DailyLC -Solved the “Reverse Integer” problem on LeetCode today 🔢 Learned how to handle 32-bit overflow without using long — classic logic check! 💪 #LeetCode #Java #100DaysOfCode #CodingJourney

Sarthak695040's tweet image. Day 1 of #DailyLC -Solved the “Reverse Integer” problem on LeetCode today 🔢
Learned how to handle 32-bit overflow without using long — classic logic check! 💪
#LeetCode #Java #100DaysOfCode #CodingJourney

The Eclipse Migration Toolkit for #Java offers a toolkit that simplifies the migration of Java applications from previous versions of #OpenJDK, especially those deemed as Long Term Service (LTS) release versions. Learn more! 👀 #opensource hubs.la/Q030jygf0

adoptium's tweet image. The Eclipse Migration Toolkit for #Java offers a toolkit that simplifies the migration of Java applications from previous versions of #OpenJDK, especially those deemed as Long Term Service (LTS) release versions. Learn more! 👀
#opensource hubs.la/Q030jygf0

Most importantly, DDD is not solely about code—it’s about fostering a positive communication process between developers and domain experts to translate business knowledge accurately into software. Read more 👉 lttr.ai/AjvfM #java #DDD

otaviojava's tweet image. Most importantly, DDD is not solely about code—it’s about fostering a positive communication process between developers and domain experts to translate business knowledge accurately into software.

Read more 👉 lttr.ai/AjvfM

#java #DDD

Turn Your HTML into High-Quality PDFs Using Java! Unlock a smarter way to manage and render #HTML files to #PDF documents in #Java using a secure #Cloud #SDK designed for modern applications. kb.groupdocs.cloud/viewer/java/re… #automation #HTMLtoPDF


Clean and capitalize non-blank strings List<String> formatted = input.stream() .filter(str -> str != null && !str.isBlank()) .map(String::trim) .map(str -> str.substring(0, 1).toUpperCase() + str.substring(1)) .toList(); #Java #StreamAPI #TechTips


Filter and sort prime numbers List<Integer> primes = input.stream() .filter(MyClass::isPrime) .sorted() .toList(); Where isPrime is a Static Class in MyClass class #Java #StreamAPI #TechTips


Filter numeric strings, convert, multiply by 10, sort List<Integer> processed = input.stream() .filter(str -> str.matches("\\d+")) .map(Integer::valueOf) .map(val -> val * 10) .sorted() .toList(); Try It Out #Java #StreamAPI #TechTips


Flatten nested lists, remove duplicates, sort descending List<Integer> flatSorted = nestedLists.stream() .flatMap(List::stream) .distinct() .sorted(Comparator.reverseOrder()) .toList(); #Java #StreamAPI #Coding #Programming #TechTips


Flatten sentences into unique, sorted, lowercase words List<String> words = sentences.stream() .flatMap(sentence -> Arrays.stream(sentence.split(" "))) .map(String::toLowerCase) .distinct() .sorted() .toList(); #Java #Developers #buildinpublic


In previous days solved these problems... #DSA #Java

_FaisalKhan_10's tweet image. In previous days solved these problems...
#DSA #Java

Day 29 ✅ Solved “Find Minimum in Rotated Sorted Array” 🔁 ⚡ 0 ms | 💾 41.89 MB Used binary search for an elegant O(log n) solution 🚀 Q: [leetcode.com/problems/find-…] Sol: [github.com/PriyabrataRoy/…] #100DaysOfCode #Java #DSA #Coding #BinarySearch

Priyo8298966333's tweet image. Day 29 ✅
Solved “Find Minimum in Rotated Sorted Array” 🔁
⚡ 0 ms | 💾 41.89 MB
Used binary search for an elegant O(log n) solution 🚀
Q: [leetcode.com/problems/find-…]
Sol: [github.com/PriyabrataRoy/…]
#100DaysOfCode #Java #DSA #Coding #BinarySearch

Began my LeetCode journey this October and honestly, some problems solve themselves faster than expected! Wrapped this one up in just 50 seconds ✅ Not all questions are this straightforward but when they click instantly it feels great. #LeetCode #Java

abhinavpuri_x's tweet image. Began my LeetCode journey this October and honestly, some problems solve themselves faster than expected!

Wrapped this one up in just 50 seconds ✅

Not all questions are this straightforward but when they click instantly it feels great.

#LeetCode #Java

If you are from tech, Lets connect. #tech #Jobs #Java #golang

kartikg_09's tweet image. If you are from tech,

Lets connect.

#tech #Jobs #Java #golang

🗓️ Day 35/90 – #DSA in Java Solved Rat in a Maze 🐭 using Recursion & Backtracking 🧠 → Understood the problem → Built logic to find paths → Implemented the final code 💡 #100DaysOfCode #Java #DSA #Backtracking #Recursion #ProblemSolving #CodingJourney

iamvirnaphriya's tweet image. 🗓️ Day 35/90 – #DSA in Java

Solved Rat in a Maze 🐭 using Recursion &amp;amp; Backtracking 🧠

→ Understood the problem
→ Built logic to find paths
→ Implemented the final code 💡

#100DaysOfCode #Java #DSA #Backtracking #Recursion #ProblemSolving #CodingJourney
iamvirnaphriya's tweet image. 🗓️ Day 35/90 – #DSA in Java

Solved Rat in a Maze 🐭 using Recursion &amp;amp; Backtracking 🧠

→ Understood the problem
→ Built logic to find paths
→ Implemented the final code 💡

#100DaysOfCode #Java #DSA #Backtracking #Recursion #ProblemSolving #CodingJourney

Day 31 of #100DaysOfCode Tackled removed anagram . #LeetCode #Java

sam1368296's tweet image. Day 31  of #100DaysOfCode
 Tackled removed anagram . #LeetCode #Java

Solved Median of Two Sorted Arrays : Finally understood the intuition for Binary Search approach and why we always perform the search on the smaller array #LeetCode #Java #Coding #DSA

_Soumyadip_22's tweet image. Solved Median of Two Sorted Arrays :
Finally understood the intuition for Binary Search approach and why we always perform the search on the smaller array
#LeetCode #Java #Coding #DSA

💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams. ✅ Avoids Object[] and casting. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Stream.toArray(Type[]::new) is a clean, type-safe way to get arrays from streams. 

✅ Avoids Object[] and casting.
#Java #JavaDev

Day 21/100 – Java DSA 🚀 Solved “Snakes and Ladders” on LeetCode By taking help of AI assistance. Learned to apply BFS for finding the minimum moves using board flattening and queue traversal. ⏱ Time: O(N²) 💾 Space: O(N²) #Day21 #Java #LeetCode #100DaysOfCode #BFS #DSA

IAmBiswabhusan0's tweet image. Day 21/100 – Java DSA 🚀
Solved “Snakes and Ladders” on LeetCode  By taking help of AI assistance. Learned to apply BFS for finding the minimum moves using board flattening and queue traversal.
⏱ Time: O(N²)
💾 Space: O(N²)

#Day21 #Java #LeetCode #100DaysOfCode #BFS #DSA

🚀 Day 26 of #100DaysOfCode Today I practiced Java DSA with 3 small but useful problems: 1️⃣ Remove the last digit of a number 2️⃣ Check if a number is a power of 2 3️⃣ Swap two numbers without using a third variable #Java #DSA

Argekar077's tweet image. 🚀 Day 26 of #100DaysOfCode
Today I practiced Java DSA with 3 small but useful problems:
1️⃣ Remove the last digit of a number
2️⃣ Check if a number is a power of 2
3️⃣ Swap two numbers without using a third variable
#Java #DSA
Argekar077's tweet image. 🚀 Day 26 of #100DaysOfCode
Today I practiced Java DSA with 3 small but useful problems:
1️⃣ Remove the last digit of a number
2️⃣ Check if a number is a power of 2
3️⃣ Swap two numbers without using a third variable
#Java #DSA
Argekar077's tweet image. 🚀 Day 26 of #100DaysOfCode
Today I practiced Java DSA with 3 small but useful problems:
1️⃣ Remove the last digit of a number
2️⃣ Check if a number is a power of 2
3️⃣ Swap two numbers without using a third variable
#Java #DSA

Java Interview Questions List 📘📚 Save it for later ✅ #java #coder #developer

anujcodes_21's tweet image. Java Interview Questions List 📘📚

Save it for later ✅ 

#java #coder #developer

💡 Java tip: Use Stream.peek() for debugging in pipelines, not for business logic. ✅ Stream.peek() lets you perform logging or inspection on each element as it flows through a stream without modifying it. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Use Stream.peek() for debugging in pipelines, not for business logic.

✅ Stream.peek() lets you perform logging or inspection on each element as it flows through a stream without modifying it.
#Java #JavaDev

🇮🇳🔹 LeetCode Daily Challenge 🧩 Problem: Find Resultant Array After Removing Anagrams 📘 LC No.: 2273 💡 Approach: 🌀 Reverse Stack Sweep 🔥 Day 672 Streak #LeetCode #Java #ProblemSolving #DailyChallenge #TechStudent #CodingJourney #BuildInPublic #DSAWithJava #DSA #100DaysOfCode

Kartscode's tweet image. 🇮🇳🔹 LeetCode Daily Challenge
🧩 Problem: Find Resultant Array After Removing Anagrams
📘 LC No.: 2273
💡 Approach: 🌀 Reverse Stack Sweep
🔥 Day 672 Streak
#LeetCode #Java #ProblemSolving #DailyChallenge #TechStudent #CodingJourney #BuildInPublic #DSAWithJava #DSA #100DaysOfCode

Built and tested the User Service + Controller for my Hotel Booking App 👨🏽‍💻 Created REST endpoints and confirmed everything works fine in Postman ✅ Github Url: github.com/MarvsConcept/H… #SpringBoot #Java #BackendDev #BuildInPublic #RESTAPI

OfficialMarvade's tweet image. Built and tested the User Service + Controller for my Hotel Booking App 👨🏽‍💻

Created REST endpoints and confirmed everything works fine in Postman ✅

Github Url: github.com/MarvsConcept/H…

#SpringBoot #Java #BackendDev #BuildInPublic #RESTAPI
OfficialMarvade's tweet image. Built and tested the User Service + Controller for my Hotel Booking App 👨🏽‍💻

Created REST endpoints and confirmed everything works fine in Postman ✅

Github Url: github.com/MarvsConcept/H…

#SpringBoot #Java #BackendDev #BuildInPublic #RESTAPI
OfficialMarvade's tweet image. Built and tested the User Service + Controller for my Hotel Booking App 👨🏽‍💻

Created REST endpoints and confirmed everything works fine in Postman ✅

Github Url: github.com/MarvsConcept/H…

#SpringBoot #Java #BackendDev #BuildInPublic #RESTAPI

Do not be surprised Moustapha! How soon & what color? - I love you too 🥰 💵🏡💝✌🏼 #Java #Tchad #SaaS #Reactjs #SelfAwareness

moustaphousman's tweet image. Do not be surprised Moustapha! 
How soon &amp;amp; what color?
    - I love you too 🥰

💵🏡💝✌🏼 
 #Java #Tchad #SaaS #Reactjs #SelfAwareness

Day 3 🌅 Woke up at 6️⃣ am 💪 ✅ Finished Spring IOC ✅ Understood JWT authentication flow 🔐 💻 DSA grind: • Two Sum • Two Sum II • Find the Pivot Index After DSA play with her 😄🐱 🐾 #Java #SpringBoot #DSA #CodingJourney

PratikCDev's tweet image. Day 3 🌅
Woke up at 6️⃣ am 💪
✅ Finished Spring IOC
✅ Understood JWT authentication flow 🔐

💻 DSA grind:
• Two Sum
• Two Sum II
• Find the Pivot Index
After DSA play with her 😄🐱 🐾

#Java #SpringBoot #DSA #CodingJourney

💡 Java tip: Starting from Java 12 you can use String.transform(Function) to apply lambdas directly to strings. #Java #JavaDev

mario_casari's tweet image. 💡 Java tip: Starting from Java 12 you can use String.transform(Function) to apply lambdas directly to strings.
#Java #JavaDev

Loading...

Something went wrong.


Something went wrong.


United States Trends