Tag: App development
-
Accessible by design: Building inclusive digital products from the ground up
Posted on July 18, 2025, Level beginner Resource Length medium
"Accessible by design" refers to building digital products in a way that makes accessibility a core part of the development process from the beginning, not an afterthought. Instead of waiting until the end of a project to address accessibility issues, this approach ensures every decision—from content structure and color choices to navigation patterns and heading hierarchy—is made with accessibility in mind. Tools like semantic HTML, logical reading order, readable typography, and keyboard-friendly interactions are used from day one. By Nir Horesh.
Tags browsers app-development frontend web-development ux
-
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
-
Make Cline enterprise-ready using an AI Gateway
Posted on July 12, 2025, Level advanced Resource Length medium
Cline is an AI-powered coding assistant that enhances developers' productivity by offering advanced code suggestions and support in debugging and architectural tasks. However, when scaling Cline across an organization, challenges such as security risks, usage tracking, and compliance arise. Portkey's AI Gateway addresses these challenges by providing enterprise-ready features like centralized access, observability, governance, and security guardrails. By Drishti Shah.
Tags software ai programming web-development app-development
-
Test layers from unit to system
Posted on July 10, 2025, Level advanced Resource Length medium
The article explores the importance of layered software testing, from unit to system tests, to build confidence and prevent systemic failures. It compares different testing strategies like the Pyramid and Trophy, arguing for a balanced approach tailored to project needs. By Jim Humelsine.
Tags tdd web-development app-development software
-
DIY Docker volume drivers: What's missing
Posted on July 6, 2025, Level advanced Resource Length medium
This post explores the limitations of the current Docker volume plugin ecosystem, emphasizing the difficulty in finding unprivileged solutions. The author details their journey in creating a custom volume plugin as a way to address this limitation. By Adam Faris.
Tags cloud docker app-development software
-
Wget to wipeout: Malicious Go modules fetch destructive payload
Posted on June 30, 2025, Level beginner Resource Length medium
Sockets threat research team uncovered a destructive supply-chain attack targeting Go developers. In April 2025, three malicious Go modules were identified, using obfuscated code to fetch and execute remote payloads that wipe disks clean. The Go ecosystem's decentralized nature, lacking central gatekeeping, makes it vulnerable to namespace confusion and typosquatting, allowing attackers to disguise malicious modules as legitimate ones. By @socket.dev.
Tags programming golang app-development infosec servers
-
Why Go rocks for building a Lua interpreter
Posted on June 28, 2025, Level intermediate Resource Length short
The interpreter's structure in Go is divided into packages for scanning, parsing, and execution, leveraging Go's interfaces for Lua value representation. This design choice, along with Go's garbage collector and testing tools, simplified development compared to the PUC-Rio Lua implementation. Challenges included error handling and compatibility issues with Lua's standard libraries. Nice one!
Tags programming golang app-development web-development google
-
A 10x faster TypeScript
Posted on June 26, 2025, Level intermediate Resource Length long
Most developer time is spent in editors, and it's where performance is most important. We want editors to load large projects quickly, and respond quickly in all situations. Modern editors like Visual Studio and Visual Studio Code have excellent performance as long as the underlying language services are also fast. With our native implementation, we'll be able to provide incredibly fast editor experiences. By Anders Hejlsberg.
Tags azure javascript app-development web-development performance
-
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
-
Choosing between EventBridge, SNS, and SQS for event-driven patterns
Posted on June 12, 2025, Level intermediate Resource Length long
AWS offers multiple services for decoupling business domains in event-driven patterns. The three main ones are EventBridge, SNS, and SQS. Use EventBridge for targeted content-based routing when you need to match complex rules. By Arpad Toth.
Tags aws app-development web-development queues messaging distributed
-
Bitcoin Core to unilaterally remove controversial OP-Return limit
Posted on May 27, 2025, Level beginner Resource Length medium
In 2014, crypto advertising barely existed. The term "Web3" hadn't been coined, Facebook banned crypto ads and startups promoting their tokens were mostly confined to forums and niche publications. But for Bitmedia founder Matvii Diadkov, the opportunity was obvious. By Martin Young.
Tags app-development blockchain fintech crypto infosec
-
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