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.
| diskutil list | |
| diskutil unmountDisk /dev/disk2 | |
| diskutil eraseDisk FAT32 SANDISK /dev/disk2 |
Speaker: Gerrit Grunwald
Youtube video
Speaker: Danica Fine
YouTube Link: Youtube
Search Result Link:
Jonatan Ivanov on YouTube
Speaker: Marcus Hellberg
YouTube Link: Watch the video
GitHub Repository: java-ai-playground
Github repository - https://github.com/joshlong-attic/2024-bootiful-spring-workshop
| #!/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 |
| #!/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(); |
| #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 |