☕️JAVA Language Community
2.91K subscribers
144 photos
7 videos
31 files
42 links
☕️ Software, IT, Java, news
💻 IT highlights
🎯 AI update
🖥⌨️🖱
Download Telegram
Design Patterns Implemented in #Java ☕️


🔗 [ https://github.com/mahbodkh/design-pattern ]


@javaCode☕️
👍1
Modern_Java_Recipes_Simple_Solutions_to_Difficult_Problems_in_Java.pdf
2.2 MB
#Book 📚📕

Modern Java Recipes: Simple Solutions to Difficult Problems in #Java ☕️ 8 and 9
Kousen, Ken

The introduction of functional programming concepts in Java SE 8 was a drastic change for this venerable object-oriented language. Lambda expressions, method references, and streams fundamentally changed the idioms of the language, and many developers have been trying to catch up ever since. This cookbook will help. With more than 70 detailed recipes, author Ken Kousen shows you how to use the newest features of Java to solve a wide range of problems.


@javaCode☕️
👍2
Get Programming with Java by Peggy Fisher.pdf
8.7 MB
#Book 📚📕

Get Programming with #Java ☕️
Peggy Fisher (2019)

Get Programming with Java teaches you to write programs in the Java language, starting from the most basic building blocks. In her relatable and personable style, author Peggy Fisher begins by helping you set up a Java programming environment on your computer. Once you’re up and running, you’ll start working with the foundations of Java and object-oriented programming, including classes and objects. Always practical and clear, this carefully-designed tutorial swaps the usual heavy-handed theory for concrete examples and easy-to-follow scenarios.


@javaCode☕️
👍4
1520144967544.jpeg
529.7 KB
Complexities of Data Structure in #Java ☕️



@javaCode☕️
🔥1
What is the difference between #LATERAL JOIN and a subquery in PostgreSQL

What is a #LATERAL join?
The LATERAL key word can precede a sub-SELECT FROM item. This allows the sub-SELECT to refer to columns of FROM items that appear before it in the FROM list. (Without LATERAL, each sub-SELECT is evaluated independently and so cannot cross-reference any other FROM item.)

🔗 [ https://stackoverflow.com/questions/28550679/what-is-the-difference-between-lateral-join-and-a-subquery-in-postgresql ]


The following relational database systems support the LATERAL JOIN syntax:
- #Oracle since 12c
- #PostgreSQL since 9.3
- #MySQL since 8.0.14


@javaCode☕️
👍3
How to limit the SQL query result set to Top-N rows only

#SQL:
SELECT
title
FROM
post
ORDER BY
id DESC
FETCH FIRST 5 ROWS ONLY


#PostgreSQL 8.3 and #MySQL:
SELECT
title
FROM
post
ORDER BY
id DESC
LIMIT 5


#Oracle 11g and older versions:
SELECT *
FROM (
SELECT
title
FROM
post
ORDER BY
id DESC
)
WHERE ROWNUM <= 5



@javaCode☕️
👍10🤯3👌1
Introduction to PostgreSQL LAG() function:

#PostgreSQL LAG() function provides access to a row that comes before the current row at a specified physical offset. In other words, from the current row the LAG() function can access data of the previous row, or the row before the previous row, and so on.

The LAG() function will be very useful for comparing the values of the current and the previous row.

more info…

@javaCode☕️
👍13
How to Convert a #Stream to List, Set, and Map in #Java? Example Tutorial

more info…




@javaCode☕️
👍16👏2
#Book 📚📕

#Kafka Streams in Action Real-time apps and microservices with the Kafka Streaming API.



You can download it in the comment section.
@javaCode☕️
👍4
#Book 📚📕
#Kafka Streams in Action, Second Edition.


You can download it in the comment section.
@javaCode☕️
👍6
#Video 🎥🖥️

#Java 8 Stream API: Grouping and Aggregating Data with Collectors

more info...

@javaCode☕️
👍12
How do you feel about AI? Will it replace developers? Let me know... Share your thoughts 🤔💭
Probably I'm gonna put some updates here!