Tag: Java
-
How to write a mini build tool?
Posted on February 26, 2026, Level intermediate Resource Length long
Model module and task dependencies to build a lightweight, dependency-aware mini build tool. By blog.sake.ba.
Tags scala java programming akka app-development
-
How to build resilient APIs with Resilience4j circuit breaker in spring boot
Posted on February 9, 2026, Level intermediate Resource Length medium
Build resilient microservices with Resilience4j's Circuit Breaker pattern, safeguarding your APIs from cascading failures and ensuring graceful fallback responses. By Kshitish Nath.
Tags programming app-development web-development scala java
-
What is Scala programming language?
Posted on October 15, 2025, Level intermediate Resource Length medium
Discover the versatility of Scala, a modern language that blends object-oriented and functional paradigms to handle data efficiently, from startups to enterprise giants. By igmguru.
Tags scala java jvm java web-development app-development
-
Understanding Scala variance
Posted on September 30, 2025, Level intermediate Resource Length long
Ross A. Baker's detailed exploration of "Understanding Scala variance" is essential reading for developers aiming to master Scala's sophisticated type system. The article begins by clarifying the concept of variance and its significance in subtyping, using concrete examples like AuthedUser and Guest.
Tags scala java programming akka programming
-
The hybrid power of OOP and FP
Posted on September 24, 2025, Level intermediate Resource Length long
This article delves into the automatic garbage collection in Python, explaining how objects are removed from memory when no longer needed. It highlights the importance of understanding this mechanism for maintaining efficient and error-free code. By Stephen Gruppetta.
Tags oop java programming software-architecture app-development functional-programming
-
New Akka deployment options: elasticity on any infrastructure
Posted on July 25, 2025, Level advanced Resource Length medium
Akka's latest deployment options represent a significant evolution in distributed systems architecture, addressing long-standing challenges in transitioning from development to production environments. The introduction of self-managed nodes and self-hosted Platform regions extends Akka's "build once, deploy anywhere" philosophy while maintaining the framework's core technical advantages. By Tyler Jewell.
Tags akka devops cloud java jvm
-
Building a real-time video AI service with Google Gemini
Posted on July 16, 2025, Level beginner Resource Length long
The article describes the development of a real-time video AI service for a major global service provider, leveraging Google Gemini's Multimodal Live API and Akka's SDK. The team successfully built, deployed, and scaled the service to handle thousands of transactions per second, far exceeding customer requirements. Key components included video ingestion, augmentation, and conversational storage, all deployed within a private Akka environment provisioned in a Google VPC in just 2 hours. By Johan Andrén.
Tags akka java ai app-development google
-
How to improve JVM-based application startup time?
Posted on June 20, 2025, Level beginner Resource Length medium
Optimizing JVM startup time is vital for many applications. This post explores various strategies, comparing their effectiveness through benchmarking a simple Netty server. Class Data Sharing (CDS) and its evolution, AppCDS, cache class data to reduce initialization overhead. By Michał Zyga.
Tags cloud jvm java app-development performance
-
Compose multiplatform for iOS is stable and production-ready
Posted on May 24, 2025, Level beginner Resource Length long
Kotlin Multiplatform 1.8.0 stabilizes Compose for iOS, marking a milestone in cross-platform development. With this update, Kotlin Multiplatform becomes a complete solution for mobile development, enabling flexible code sharing across both business logic and UI without compromising app quality or losing control over platform-specific capabilities. By Ekaterina Petrova.
Tags app-development android kotlin ios java jvm
-
Java performance: Optimizing code for maximum efficiency
Posted on March 31, 2025, Level beginner Resource Length long
Java performance is a crucial aspect of software development. It affects how fast and efficiently Java programs run. Optimizing Java performance can lead to faster applications, reduced resource usage, and better user experiences. By Kacper Rafalski.
Tags java kotlin app-development performance
-
MVP (Model View Presenter) architecture pattern in Android with example
Posted on February 20, 2025, Level beginner Resource Length medium
The MVP (Model View Presenter) architecture pattern is widely adopted in Android development for structuring application code into separate layers that enhance maintainability, readability, and scalability. This approach involves three distinct components: Model, View, and Presenter. By GeeksforGeeks.
Tags software software-architecture android programming jvm java
-
Fifteen essential design patterns explained with Java examples
Posted on January 2, 2025, Level intermediate Resource Length long
Design patterns are reusable solutions to common problems in software design. They provide a proven and efficient way to solve complex problems, making it easier for developers to write better code. By Akash Pandey.
Tags software-architecture java queues messaging learning