| Symbol | Name | Update Level | Example | Matches | Won't Match |
|---|---|---|---|---|---|
^ |
Caret | Minor + Patch | ^1.2.3 |
1.2.3, 1.9.0 |
2.0.0 |
~ |
Tilde | Patch only | ~1.2.3 |
1.2.3, 1.2.9 |
1.3.0 |
| (none) | Exact | None | 1.2.3 |
1.2.3 only |
1.2.4 |
* or x |
Wildcard | Everything | 1.x |
1.0.0, 1.9.9 |
2.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diskutil list | |
| diskutil unmountDisk /dev/disk2 | |
| diskutil eraseDisk FAT32 SANDISK /dev/disk2 |
Speaker: Gerrit Grunwald
Youtube video
- Gerrit Grunwald is a developer advocate at Azul.
- Log4Shell vulnerability incident (Nov 24, 2021) is highlighted as a reminder of how significant and widespread security vulnerabilities can be.
Speaker: Danica Fine
YouTube Link: Youtube
- Apache Kafka is a distributed event streaming platform that enables real-time data applications. It supports:
- Reactive, accurate, loosely coupled, and resilient systems.
Search Result Link:
Jonatan Ivanov on YouTube
- Watch: Micrometer and observability topic
- Take Notes: On how to effectively set up JVM performance tuning tools
Speaker: Marcus Hellberg
YouTube Link: Watch the video
GitHub Repository: java-ai-playground
Github repository - https://github.com/joshlong-attic/2024-bootiful-spring-workshop
- IDE choices: IntelliJ, VSCode, Eclipse.
- Java: GraalVM (team working on it as part of Oracle).
- Key Resources:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env kotlin | |
| @file:Repository("https://repo.maven.apache.org/maven2/") | |
| @file:DependsOn("com.squareup.okhttp3:okhttp:4.12.0") | |
| import okhttp3.OkHttpClient | |
| import okhttp3.Request | |
| import org.w3c.dom.Document | |
| import org.xml.sax.InputSource | |
| import java.io.StringReader |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env kotlin | |
| @file:Repository("https://repo.maven.apache.org/maven2/") | |
| @file:DependsOn("com.squareup.okhttp3:okhttp:4.12.0") | |
| import okhttp3.OkHttpClient | |
| import okhttp3.Request | |
| val client = OkHttpClient() | |
| val request = Request.Builder().url("https://example.com").build(); |
NewerOlder