Just Another CDI Committer--airhacks.fm podcast 📎
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
CDI 4.0, 4.1, 5.0, CDI-lite, deployment-time optimizations and Quarkusis available for download.
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
CDI 4.0, 4.1, 5.0, CDI-lite, deployment-time optimizations and Quarkusis available for download.
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
the inner workings of SQL query parsing, prepared statements, connection pooling and serverless workloads with Oracle Databaseis available for download.
"Java well-suited for LLM inference and training, NoOps concept possible with serverless architecture, cloud services offer better automation through APIs, on-premise serverless less beneficial for regular data centers, AppWrite as backend service has pros but vendor lock-in concerns, generative AI unlikely to fully replace backend development, Quarkus offers fast cold start times for serverless functions, evolution of Java ecosystem over 8 years including shift to serverless and cloud-native development"
...is ready to watch:
See you every first Monday of the month at https://airhacks.tv 8pm CET (UTC+1:00). Show is also announced at: meetup.com/airhacks.
Any questions left? Ask now: gist.github.com/AdamBien/99e1996d77ffcbe7ad6ce49b5db4797f
"Kubernetes true costs including VPC and network components, Mobile development options with pros and cons, Java's capabilities for local LLM inference, Historical influence of Steve Jobs on Java enterprise development, Repository pattern critique and alternatives, Elastic vs OpenSearch considerations, Approaches to entity validation and error handling, Reflections on Java development practices over time"
...is ready to watch:
See you every first Monday of the month at https://airhacks.tv 8pm CET (UTC+1:00). Show is also announced at: meetup.com/airhacks.
Any questions left? Ask now: gist.github.com/AdamBien/c2450966a35afb265aca224e408e3a95
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
Enterprise Java, Quarkus and cloud-native PostgreSQLis available for download.
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
Didaktik Gama, NoSQL with MySQL, JBoss, Thorntail and Quarkusis available for download.
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
running Java on Java aka Espresso and LLMs on Java updatesis available for download.
Any questions left? Ask now: https://gist.github.com/AdamBien/355fd0bebcfd5865464cbaf32b0e3e5a and get the answers at the next airhacks.tv. Some questions are also answered with a short video: 60 seconds or less with Java
Ask questions during the show via twitter mentioning me: https://twitter.com/AdamBien (@AdamBien),using the hashtag: #airhacks or built-in chat at: airhacks.tv. You can join the Q&A session live each first Monday of month, 8 P.M at airhacks.tv
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
early programming experiences, enterprise Java, Scala and Droolsis available for download.
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
.mobi and early Enterprise Java, GraphQL, SmallRye, MicroProfile and Quarkusis available for download.
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
Java development with ChatGPT and the ChatGPT for Java bookis available for download.
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
TornadoVM, GPU acceleration, LLM inference and motorcycle electronicsis available for download.
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
serverless Java with AWS Lambda, Java's performance on lambda compared to node.js, AWS SnapStart, Lambda functions and microservicesis available for download.
"Java EE 8 News, New server (the real hardware): the part list. Oracle says it is 'commmitted' to Java EE 8 microprofile.io announcement Wildfly-Swarm, Payara Micro and the relation to microservices Dynamic injection into @Stateless EJBs Handling ViewExpiredException in JSF Managing JAX-RS clients on servers Accessing GlassFish / Payara logifles from the browser Is overusing CDI a code smell? JAX-RS MessageBodyWriter and Singleton challenges How to approach logging in microservices? Monitoring Java EE methods"
Any questions left? Ask now: and get the answers at the next airhacks.tv. Some questions are also answered with a short video: 60 seconds or less with Java
Ask questions during the show via twitter mentioning me: https://twitter.com/AdamBien (@AdamBien),using the hashtag: #airhacks or built-in chat at: airhacks.tv. You can join the Q&A session live each first Monday of month, 8 P.M at airhacks.tv
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
JDBC drivers and interesting, proprietary Oracle Database featuresis available for download.
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
easy RAG with langchain4j, MicroProfile and langchain4j "synergies" and future developmentsis available for download.
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
langchain4j, Quarkus and the architecture of LLM integrationis available for download.
The talk "The Best of Java Shorts Show: 100 Snippets in 50 Minutes" at Devoxx 2024 Belgium was recorded with a selection of the most interesting or popular shorts:
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
JVector 3 ("the most advanced embedded vector search engine written in Java") under the hood and design trade-offsis available for download.
From REST API and SDKs to langchain4j to fully managed cloud solutions to local integration with jlama and llama3.java of open source foundation models. In this session I will present architectures, ideas, hacks, and workarounds for integrating LLM with Java enterprise applications. I will illustrate the concepts with Java 21, Quarkus / MicroProfile code and integrate the latest Claude, ChatGPT, llama and AWS Bedrock models. Your questions will be given priority and answered interactively.
How to: run Java as a shell script, run a Java app without compiling, print an emoji, run an HTTP dev server, use libraries without compiling, colorful logs, access LLMs,run timer jobs, access the clipboard, implement a file watch, main in interfaces, easy file parsing (...) and ~100 other popular Java snippets from youtube.com/bienadam/shorts. No builds, no Maven, no dependencies, just javac and Visual Studio code.
"String.join() is 30% faster than Collectors.joining(), JMH not always necessary for high-level benchmarking, interfaces slightly faster than abstract classes but the difference is negligible, Quarkus requires no installation - just use the POM file, Quarkus tests are integration tests and should be used sparingly, use shutdown hooks or @PreDestroy for clean connection closure in Lambdas, GraalVM shines in CLI tools and polyglot applications, simple export method for Java version management, JavaFX on mobile is challenging but viable with Gluon, EJBs and some Java EE concepts are outdated, but interceptors and dependency injection are still relevant"
...is ready to watch:
See you every first Monday of the month at https://airhacks.tv 8pm CET (UTC+1:00). Show is also announced at: meetup.com/airhacks.
Any questions left? Ask now: gist.github.com/AdamBien/26939d9a232bd0c3b79fd6149bc0815b
Hi, I got an interview question as to which one is faster Abstract class or Interface ? Can you explain please.What is Faster: String.join or Collectors.joining?
"PLEASE use the microbenchmark harness in future videos. I have the impression, that this suggests that performance measurements with after-minus-before is a good idea."from: What is Faster: String.join or Collectors.joining?
"Interceptors and Dependency Injection Singleton EJBs, CDI and concurrency BCE in Eclipse and can Boundary communicate with Entity? Stateful EJBs vs. SessionScoped"
Any questions left? Ask now: https://gist.github.com/AdamBien/0e1193cd4697658cd226e4c370bec94d and get the answers at the next airhacks.tv. Some questions are also answered with a short video: 60 seconds or less with Java
Ask questions during the show via twitter mentioning me: https://twitter.com/AdamBien (@AdamBien),using the hashtag: #airhacks or built-in chat at: airhacks.tv. You can join the Q&A session live each first Monday of month, 8 P.M at airhacks.tv
Subscribe to airhacks.fm podcast via: spotify| iTunes| RSS
the LLM Revolution in software development and building the Devoxx Genie pluginis available for download.