Transition system - Wikipedia
CRDTs Turned Inside Out
Last time, I discussed the trade-offs between more traditional CRDTs, such as the State-based CRDT, Op-based CRDT, and Delta-based CRDT. There are another class of CRDTs: Merkle CRDTs. Most ink spilt on CRDTs focuses on consistently merging data from different replicas. That's just half the story. Without a way of
Year in Review: GenAI Exposed Silicon Valley Chip Antiquity
In 2023, Intel and AMD realized their traditional business model of selling CPUs was not as relevant to a new AI-led computing landscape.
Datacenter Infrastructure Report Card, Q3 2023 - The Next Platform
It is hard to keep a model of datacenter infrastructure spending in your head at the same time you want to look at trends in cloud and on-premises spending as well as keep score among the key IT suppliers to figure out who is winning and who is losing. And so we have built a
For Robust Edge Computing, Plan for the ‘What Ifs’
Robustness isn’t something you can bolt on; it must be baked into your edge architecture from the start.
What in the world is Zero Knowledge? Let txSync explain
Ever heard of zero-knowledge? It’s a really big thing in the world of technology, especially blockchain technology. And yes, we see the paradox, but let's explain.
Production Readiness Checklist
Modern applications run typically in the cloud. As good residents, distributed applications must fulfill many requirements in order to enable reliable operations and maintenance. This article summarizes the most important points in order to go live and to keep applications healthy over their lifetime.
Twelve-factor app All modern cloud applications should comply with the 12-factor app principles:
Codebase is tracked in a version control system, the same code will be deployed in different environments Dependencies are shipped with the deployable artifact Backing Services can be detached and re-attached without code changes (e.
Lambda Architecture - A data engineering approach for big data
Lambda architecture is a data processing architecture designed to handle large amounts of data by combining batch processing with real-time stream processing.Lambda architecture provides a way to handle both real-time and batch processing in a single architecture.
HTTP Live Streaming - Wikipedia
Memetics - Wikipedia
Intel launches AI chips for servers and clients
New 5th Gen Intel Xeon processors and Core Ultra mobile processor family are aimed at bringing AI to all compute devices.
The Transformative Fusion of Probability and Vector Search
Search is undergoing a transformative shift in which hybrid systems are blending the precision of keywords with the depth of semantic understanding.
Meet OpenBao, an Open Source Fork of HashiCorp Vagrant
First Terraform, and now Vault: More open source code left by HashiCorp is a finding a home with potential competitors. This time, IBM is sniffing around the spoils.
Home | Telepresence
Telepresence: a local development environment for a remote Kubernetes cluster
Introduction | Handlebars
Fly.io has GPUs now
Documentation and guides from the team at Fly.io.
How the OpenTelemetry Collector Scales Observability
Two talks at KubeCon+CloudNativeCon 2023 showed the range of tools and services in the observability space.
OASIS OpenEoX TC | OASIS
Network services in 2024: 3 off-the-wall ideas
If not VPNs, then what? These three ideas for connectivity might change the network future by rethinking the traditional service provider concept.
Spritely and Veilid: Exciting Projects Building the Peer-to-Peer Web
While there is a surge in federated social media sites, like Bluesky and Mastodon, some technologists are hoping to take things further than this model of decentralization with fully peer-to-peer applications. Two leading projects, Spritely and Veilid, hint at what this could look like.There are...
ScaleOut Software Releases Open-Source APIs for Digital Twins and Development Workbench : @VMblog
ScaleOut Software announced the first open-source release of its digital twin APIs and development workbench for its ScaleOut Digital Twins hosting platform.
A Deeper Dive of kube-scheduler
At OpenAI I have spent the last few months of my life developing a Kubernetes scheduler plugin to customize preemption to better suit our ML workloads.
System Design: Availablity, Scalability, and Types Of Storage.
Availability measures uptime; 'nines' show reliability. Sequence lowers, parallel boosts. High availability minimizes interruptions. Storage etc.
Data Structures: Stack vs Queue Comparison
Let's compare and contrast two simple data structures: stacks and queues
What is Attribute Based Access Control (ABAC)? | Permit
Learn about Attribute-Based Access Control (ABAC) - advanced authorization model using attributes over roles for precise application security and access control
Understanding attention in large language models
Chatbot users often recommend treating a series of prompts like a conversation, but how does the chatbot know what you're referring back to? A new study reveals the mechanism used by transformer models—like those driving modern chatbots—to decide what to pay attention to.
A* search algorithm - Wikipedia
Mercat
Working with the new Idempotency Keys RFC
Idempotency is when doing an operation multiple times is guaranteed to have the same effect as doing it just once. When working with APIs…
Generate All the Substring From a String — Using Recursion - Async Queue
Generating all the substrings from a string using recursion