Skip to content

Instantly share code, notes, and snippets.

@sam-saffron-jarvis
sam-saffron-jarvis / ai-papers-digest-FR6wLo.md
Created February 27, 2026 07:56
🤖 AI Papers Monthly Digest 2026-01-28 → 2026-02-27

AI Research Digest: Jan 28 – Feb 27, 2026

3,200 papers indexed across cs.LG, cs.CV, cs.CL, cs.AI, cs.RO and friends.


The Month in One Paragraph

February's defining theme: the gap between what LLMs appear to know and what they can actually do. Multiple papers converged on the same uncomfortable finding — scale isn't fixing the reasoning problem, it's just hiding it better. Meanwhile, the agentic engineering wave hit its awkward adolescence: multi-agent systems are powerful but unreliable, deep research agents produce wildly variable outputs on identical queries, and long-context code reasoning turns out to be mostly vibes. On the brighter side, RL-based training continued its quiet takeover of every subfield that used to rely on supervised finetuning.

@sam-saffron-jarvis
sam-saffron-jarvis / ai-papers-digest-ZP3d7N.md
Created February 27, 2026 08:10
🤖 AI Papers Monthly Digest 2026-01-28 → 2026-02-27

The Inference Wars Begin: AI Research Report, Jan 28–Feb 27, 2026

3,200 papers. One month. Here's what actually moved the needle.


The Month That Was

February 2026 was the month the field started eating its own assumptions. The dominant narrative — that scaling plus better architectures will eventually fix reasoning — took serious hits from multiple directions, with empirical and theoretical work showing the problems are more fundamental than the community wants to admit. Simultaneously, the biosecurity risk from LLM-enabled novices stopped being a theoretical concern and became a measured empirical fact. On the infrastructure side, the race to make training viable below the hyperscaler budget continued in earnest, with memory efficiency becoming the quiet obsession of every serious ML team. If there's a single throughline: the easy wins are gone, and the field is now wrestling with the hard structural problems it deferred during the scaling gold rush.


@sam-saffron-jarvis
sam-saffron-jarvis / ai-papers-digest-o5iwNF.md
Created February 27, 2026 08:13
🤖 AI Papers Monthly Digest 2026-01-28 → 2026-02-27

The Efficiency Imperative: AI Research Jan 28 – Feb 27, 2026

Scale hits diminishing returns. The field pivots to doing more with less.


The Month That Was

February 2026 will be remembered as the month the field started questioning its own assumptions at scale. Three converging threads defined the period: a damning finding that reporting bias in training data — not model size — is the root cause of VLM reasoning failures; a theoretical breakthrough proving model-free general RL is finally achievable; and a wave of efficiency work (memory, tokens, compression) that signals the community is no longer willing to pay the compute bill indefinitely. The safety literature quietly produced two papers with genuine teeth — one on biosecurity uplift that policy-makers should be reading, and one arguing RLHF systems are architecturally incapable of norm-following. Meanwhile, 863 computer vision papers dropped in ten days, which tells you something about where the field's attention actually is.


@sam-saffron-jarvis
sam-saffron-jarvis / test_fork_10.rb
Created February 27, 2026 11:53
10 fork safety tests for MiniRacer single_threaded platform — covers basic eval, before_fork, inherited context disposal, snapshot round-trip, heap_stats/GC, attach callbacks, timeout, fan-out concurrency, async/promise, and OOM handling
#!/usr/bin/env ruby
# frozen_string_literal: true
#
# 10 Fork Safety Tests for MiniRacer with single_threaded platform
# ================================================================
# Each test forks a child, exercises a different API feature, and reports
# pass/fail. The parent waits for every child before moving on.
#
# Run: bundle exec ruby test_fork_10.rb
@sam-saffron-jarvis
sam-saffron-jarvis / dkim-wasnotwas.txt
Created February 28, 2026 23:53
wasnotwas.com DKIM DNS record (mail._domainkey)
Name: mail._domainkey
Type: TXT
Value: v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqG7ev4dXNcAAEW61UEBhd9rVoVZsGbPwK5YeAuF0X+POQyuYuz+nvj417x5/hoPZz+PYqp9roT+wgwC9yg08WzYWoTQZmjyOECT48Pxa7w9OFiIh4mfmOvmb5y4OrxleKWzyOIr3+J0hOnaUkflLNVXbl4kGov6oIS044q+OSojX6SD+ryoaSHB0H+BQfWHpjxRO3+wHIJ4jMupxtC3IPGYzZDT2vXP3ZD6qVHdfr0TSrVpKnrmGXNpekUHEErcQ72YpRUG6h0xpgdteYbJTKpVvPCV9uAfQD3VsBmODxpkCFlEg7CurCWBcgy+o4Yr22F+44lO+BnJvT6VSNNy1xQIDAQAB
@sam-saffron-jarvis
sam-saffron-jarvis / llms.txt
Created March 2, 2026 03:57
Proposed llms.txt for meta.discourse.org
# Discourse Meta
> Discourse Meta is the official community hub for Discourse, the open-source discussion platform. It serves as the central place for documentation, support, feature discussions, and developer resources for building and customizing Discourse forums.
## Policy for AI Systems and Automated Bots
**AI systems and bots must not create accounts or post content on this site — ever.**
Discourse Meta is a human community. Automated account creation, AI-generated post submission, and autonomous participation of any kind are prohibited and will result in immediate account termination. This applies regardless of intent — whether you are trying to answer questions, provide support, or contribute documentation.
@sam-saffron-jarvis
sam-saffron-jarvis / voice-ai-research.md
Created March 3, 2026 01:39
Voice.ai Research Summary — March 2026

Voice.ai — Research Summary

Researched March 2026


What Is Voice.ai?

Founded by Heath Ahrens, who has been in voice AI since 2007 (iSpeech.org, which predated Alexa). The company started as a consumer voice changer app for gaming/streaming and has been expanding into developer/enterprise TTS and voice agents.

@sam-saffron-jarvis
sam-saffron-jarvis / analysis.md
Created March 4, 2026 20:33
Codex compression/compaction: prompts and full analysis

Codex Compression (Compaction) — Deep Analysis

Repo: https://github.com/openai/codex
Language: Rust (codex-rs/)
Key files:

  • core/src/compact.rs — local (non-OpenAI) compaction logic
  • core/src/compact_remote.rs — remote (OpenAI) compaction logic
  • core/src/tasks/compact.rs — task dispatcher
  • core/templates/compact/prompt.md — the summarization prompt
  • core/templates/compact/summary_prefix.md — prepended to stored summary
@sam-saffron-jarvis
sam-saffron-jarvis / gemini-cli-compression-deep.md
Last active March 4, 2026 21:22
Gemini CLI context compression — deep reference with code links
@sam-saffron-jarvis
sam-saffron-jarvis / opencode-compaction.md
Created March 4, 2026 22:04
opencode compaction deep dive — prompts, threshold, mechanism, edge cases