Anthropic acquires Bun
Anthropic acquires Bun, the JavaScript runtime company, to power its Claude Code AI products and accelerate development.
Anthropic acquires Bun, the JavaScript runtime company, to power its Claude Code AI products and accelerate development.
Explains how MCP servers enable faster development by using LLMs to dynamically read specs, unlike traditional APIs.
Explains the technical distinction between JavaScript engines (like V8) and JavaScript runtimes (like Node.js), clarifying their roles and components.
Overview of new features in Java 25, including language updates, API improvements, and runtime enhancements.
How to fix an undefined import error when calling an API at runtime in an Astro component by moving the import into the script tag.
Bun 1.0, a fast JavaScript runtime and toolkit, is released as a potential Node.js alternative with built-in tools and performance benefits.
Analysis of WebAssembly's impact on programming languages, focusing on the Component Model and which languages will dominate Wasm development and consumption.
Explains how reflection is implemented in a new systems programming language, including type introspection and runtime type manipulation.
An exploration of over 40 JavaScript engines beyond V8, JSC, and SpiderMonkey, detailing their use cases, implementations, and features.
Explores the technical challenge of dynamically calling a superclass method at runtime in Swift, diving into Objective-C runtime internals.
A developer's first impressions and experience trying out Deno 1.0, covering setup, built-in tools, and initial pros and cons.
Explains the technical reasons behind the change to objc_msgSend's function prototype in Apple's Objective-C runtime.
Explores building an AOT-compiled JavaScript implementation using V8's runtime, comparing it to other dynamic languages and detailing the compilation process.
An analysis of PHP 8's JIT compiler, explaining how it works and its potential impact on performance in web and non-web contexts.
Explores the intricate, interdependent relationship between the .NET CLR (Common Language Runtime) and its JIT (Just-In-Time) compiler.
Explores Swift's new @dynamicMemberLookup feature in Swift 4.2, discussing its use, potential pitfalls, and how to make dynamic calls explicit.
An in-depth look at CoreRT, a .NET runtime designed for Ahead-of-Time (AOT) compilation, comparing it to existing .NET AOT solutions.
A guide to navigating the open-source CoreCLR runtime source code, covering its structure, stats, and key components like the JIT and GC.
Explores building a Swift library for real-time, live updates to iOS app UI and themes without recompilation, using Traits and runtime features.
Explains how the .NET Garbage Collector pauses threads at safe points to perform collection, detailing the suspension mechanism and TTSP.