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

推荐订阅源

N
Netflix TechBlog - Medium
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - Franky
F
Fortinet All Blogs
D
Docker
博客园 - 司徒正美
腾讯CDC
Recent Announcements
Recent Announcements
The Cloudflare Blog
B
Blog RSS Feed
GbyAI
GbyAI
T
Tailwind CSS Blog
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - 2020science/ai-in-films-corpus: An annotated cor...
2020science · 2026-05-16 · via Hacker News - Newest: "AI"

A curated international corpus of feature films (1927–2026) in which artificial intelligence is a primary plot driver. Each entry is annotated for the kind of future the film depicts and how AI is portrayed within it, supporting comparative reading across decades, regions, and visions of what AI might mean for the human prospect.

169 films · 31 countries · 21 languages · 1927–2026

Led by Andrew Maynard working with Claude Code using Opus 4.7 Max

Associated Substack post: https://www.futureofbeinghuman.com/p/ai-movies-may-be-less-dystopian-than-we-think

May 14, 2026

What's in the repo

File What it is
corpus.json The corpus — 169 film entries, fully annotated
corpus-viewer.html A single-file browser viewer for the corpus (no server required)
codebook.md The classification codebook — futures orientation (8 categories) and AI portrayal (4 categories)
schema.md Comprehensive description of every JSON field
methodology.md How the corpus was built — inclusion criteria, sources, stages, audit, taxonomy development
futures-landscape.md The intellectual landscape behind the futures taxonomy: futures studies, SF criticism, and AI-narrative literature
bibliography.md A loose bibliography of works that informed the corpus and its taxonomies
LICENSE CC BY 4.0
CITATION.cff Machine-readable citation metadata for GitHub and academic citation managers

Using the viewer

Open corpus-viewer.html in a browser. If served alongside corpus.json (e.g. via a local web server), the viewer auto-loads the corpus; otherwise it accepts the JSON via drag-and-drop or file picker.

The simplest local serve, from the repo root:

python3 -m http.server 8000

Then open http://localhost:8000/corpus-viewer.html.

The viewer supports full-text search, filtering by country / language / decade / franchise / futures-orientation / AI portrayal, click-to-filter on tags and badges, and hoverable definitions for the two classification dimensions.

It's also available directly (with the current version of the corpus) at https://andrewmaynard.net/aimoviefutures/

Working with the corpus directly

The corpus is a single JSON array. Every entry follows the same schema (see schema.md). Quick example — filter to films classified as Protopia:

import json
with open('corpus.json') as f:
    corpus = json.load(f)
protopia = [film for film in corpus
            if film.get('analyses', {}).get('futures_orientation', {}).get('primary') == 'Protopia']
print(f"{len(protopia)} Protopia films")

Citing

If you use this corpus, please cite as:

Maynard, Andrew (2026). AI-in-Films Corpus. Version 1.0. https://github.com/[username]/ai-in-films-corpus

License

Released under Creative Commons Attribution 4.0 International (CC BY 4.0) — share and adapt freely with attribution. See LICENSE for the full text.

Author and context

Compiled by Andrew Maynard. The corpus and accompanying analyses underpin a planned 2026 Substack essay on AI in films at andrewmaynard.substack.com.

Status and limitations

  • The corpus reflects what was findable in publicly available sources at the time of compilation. Coverage is broader than typical English-language lists but not exhaustive — every analyst will know of films that were missed, and additions are welcome.
  • Classifications are interpretive judgments grounded in a documented codebook (codebook.md). Reasonable analysts will disagree on individual films, particularly those near category boundaries; the per-film justification field is provided to make each call inspectable.
  • The futures-orientation taxonomy focuses on the trajectory the AI makes legible in the film, not the strict end-state. See the codebook for the rationale and the trade-offs.
  • The critical_context field aims to point at the most relevant scholarship for each film. It was iteratively audited (see methodology.md), but bibliographic precision in this field should be treated as a guide rather than a verified citation list — readers should consult the named sources directly.
  • While the corpus was developed under the direction of Andrew Maynard, errors may have crept in through the use of Claude. Please treat with caution.

Contributing and corrections

While this corpus will only be updated occasionally, please feel free to replicate and expand on.