惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
T
The Blog of Author Tim Ferriss
量子位
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
小众软件
小众软件
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
美团技术团队
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
云风的 BLOG
云风的 BLOG
博客园 - 【当耐特】
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security

Hacker News: Front Page

SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Introducing Claude Opus 4.7 Qwen Studio The Future of Everything is Lies, I Guess: Where Do We Go From Here? GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Ancient DNA reveals pervasive directional selection across West Eurasia [pdf] AI cybersecurity is not proof of work Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. A Better Ludum Dare; Or, How to Ruin a Legacy GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Unexpected €54k billing spike in 13 hours: Firebase browser key without API restrictions used for Gemini requests Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent Codex Hacked a Samsung TV
Blorp - Overview
blorp-lang.o · 2026-06-01 · via Hacker News: Front Page

A low-friction, high-performance language for code you can trust.

Blorp by Example

GOALS = [
	("confidence", ["pure functions", "explicit effects"]),
	("speed", ["native code", "structured concurrency"]),
	("approachability", ["small syntax", "direct control flow"]),
	("durability", ["typed failure", "safe bounds"]),
]


pure func format_goal(goal: (String, List[String])) -> String:
	(name, features) = goal
	"${name}: ${features.join(", ")}"


func main(args: List[String]):
	pitch = GOALS
		.map(format_goal)
		.join("\n")

	print(pitch)

Features

Blorp keeps the language surface direct while making effects, failure, and concurrency easier to reason about.

  • Readable syntaxIndentation, keyword operators, and method-style calls keep code easy to scan.
  • Static safetyStrong types, checked imports, explicit fallibility, and exhaustive match make mistakes harder to hide.
  • Purity trackingpure func separates deterministic logic from code that can perform I/O.
  • Value semanticsAssignment behaves like an independent value, while ARC/COW keeps sharing efficient.
  • Typed absence and failureOption, Result, match, and ?= put uncertainty in the type flow.
  • Structured concurrencyScoped tasks, joins, timeouts, and channels keep concurrent work bounded.
  • Compile-time boundsFixed dimensions let the compiler prove safe indexing for arrays, vectors, and matrices.
  • Native performanceBlorp compiles to C while keeping performance work visible.
  • Tool-friendly designStable formatting and explicit effects make human and AI-written code easier to review.

Built for Humans and AI

AI can generate code quickly, but generated code still has to be reviewed, debugged, and maintained. Blorp makes that work easier. Pure functions, explicit effects, structured concurrency, typed failure, managed memory, and compile-time bounds checking reduce the number of things a human or model has to worry about.

Performance

Blorp compiles to C, so idiomatic Blorp code is intended to run within range of hand-written C. Below is a recent benchmark snapshot from the Blorp benchmark suite, run on an M4 MacBook Air. It's not meant to be authoritative, but shows broadly where blorp is positioned.

BenchmarkBlorpCGoPython
numeric_loop0.1242s0.1215s (1.0x)0.1726s (1.4x)5.1754s (41.7x)
fib0.1979s0.1970s (1.0x)0.2600s (1.3x)7.6289s (38.5x)
string0.1169s0.1071s (0.9x)0.1681s (1.4x)0.1323s (1.1x)
array_sum0.0011s0.0005s (0.5x)0.0045s (4.1x)0.0957s (87.0x)
array_ops0.0069s0.0056s (0.8x)0.0179s (2.6x)0.4976s (72.1x)
dict_ops0.1370s-0.1340s (1.0x)0.3506s (2.6x)
list_ops0.1236s-0.2074s (1.7x)0.4296s (3.5x)
set_ops0.2573s-0.5509s (2.1x)0.2332s (0.9x)
threaded_cpu_map0.0150s0.0110s (0.7x)0.0191s (1.3x)0.9889s (65.9x)
channel_pipeline0.0262s0.0345s (1.3x)0.0092s (0.4x)0.1952s (7.5x)
sleep_fanout0.0084s0.0118s (1.4x)0.0061s (0.7x)0.0376s (4.5x)
options0.0148s---
simd0.1302s0.1071s (0.8x)--
nbody0.0539s0.0495s (0.9x)0.0489s (0.9x)3.0480s (56.5x)
binary_trees0.1217s0.1125s (0.9x)0.1158s (1.0x)0.6813s (5.6x)
fannkuch0.3254s0.1819s (0.6x)0.1493s (0.5x)2.6348s (8.1x)
spectral_norm0.0160s0.0106s (0.7x)0.0140s (0.9x)0.9081s (56.8x)
mandelbrot0.0020s0.0021s (1.0x)0.0195s (9.8x)0.0590s (29.5x)
knucleotide0.0231s-0.0153s (0.7x)0.0601s (2.6x)
reverse_complement0.0003s-0.0001s (0.3x)0.0022s (7.3x)

Run details: in-process BENCH markers, 52 binaries compiled up front, 4 benchmark threads, Apple clang 21.0.0, Go 1.26.3, Python 3.14.4, and Python concurrency 3.14.4. Comparison cells show time plus the benchmark suite's reported factor relative to Blorp. A dash means that runner was not reported for that benchmark. See performance tools

Technical Details

Blorp is meant to feel direct at the surface while keeping the compiler's safety and runtime choices explicit.

  • Static TypesThe compiler checks imports, calls, match exhaustiveness, and fallible values before code reaches the C backend.
  • Hindley-Milner-Style InferenceLocal names usually do not need annotations; types flow from literals, calls, branches, and generic uses.
  • Value SemanticsAssignment and updates behave like independent values, while ARC and COW keep common sharing cheap.
  • Perceus OwnershipThe compiler lowers ownership with Perceus-style dup/drop and reuse analysis, then runtime reference counts preserve source semantics.
  • Native OutputTyped programs lower through Core IR to generated C, then a C compiler produces a native binary.