- Boostnote install - https://github.com/BoostIO/boost-releases/releases/tag/v0.15.3
- Clean up old depenencies
- sudo vim
/var/lib/dpkg/status
- Remove
- boostnote : Depends: gconf-service Depends: gconf2 Depends: gvfs-bin but it is not installable
- sudo vim
This file contains 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
rm -rf ~/.config/autostart/jetbrains-toolbox.desktop \ | |
rm -rf ~/.local/share/JetBrains/Toolbox \ | |
rm -rf ~/.local/share/applications/jetbrains-toolbox.desktop |
This file contains 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
#Init spring webapp | |
spring init -d=lombok,web -type=gradle-project-kotlin -n=spring-boot-hello-world spring-boot-hello-world | |
#Shows available dependencies | |
spring init --list | |
#Init Spring Cloud Function | |
spring init -d=lombok,cloud-function -type=gradle-project-kotlin -n=spring-cloud-function-hello-world spring-cloud-function-hello-world |
This file contains 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(); |
This file contains 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 |
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:
Speaker: Marcus Hellberg
YouTube Link: Watch the video
GitHub Repository: java-ai-playground
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: 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.