Hacker News, Distilled

AI powered summaries for selected HN discussions.

Page 687 of 798

Winamp Legacy player source code

Licensing and “Open Source” Controversy

  • The released Winamp Legacy code uses a custom “Winamp Collaborative License” that:
    • Allows viewing and private modification.
    • Explicitly forbids distributing modified versions and “forked” versions.
    • Reserves official distribution to the repository maintainers.
  • Many commenters argue this is “source-available,” not open source or free software by OSI / FSF standards.
  • The license text calls itself “free” and “copyleft,” which several see as misleading or “open washing,” since copyleft normally requires allowing redistribution of modified versions.
  • Some appreciate the source-available middle ground for debugging and learning, even if it’s restrictive.

Forking, GitHub, and Contribution Workflow

  • The “No Forking” clause conflicts with normal GitHub workflows (press Fork, modify, open PR).
  • Confusion exists over whether “fork” means:
    • Any GitHub fork/clone; or
    • A separate long‑term derivative project (e.g., MariaDB vs MySQL).
  • Some suggest contributing only via local patches or email, or GitHub issues with diffs, to stay within the text of the license.
  • Others think the language is internally contradictory: it “encourages” contributions but bans creating modified codebases to test them.

GitHub Terms of Service vs Winamp License

  • GitHub’s ToS states that making a repo public grants other GitHub users the right to view and “fork” it on GitHub.
  • Debate centers on whether this platform right overrides or conflicts with Winamp’s license; suggested outcomes range from “GitHub can enforce only against Winamp” to “users are reasonably protected by ToS.”
  • Many note there are already hundreds of forks despite the prohibition.

Codebase, Dependencies, and Removed Components

  • The code is large and heavily vendor-bundled, including old DirectX SDK pieces and external binaries; some question licensing of these parts.
  • Subsequent commits removed non‑releasable or third‑party code (e.g., Dolby/Fraunhofer, SHOUTcast, GeoIP), but these remain in history and forks.
  • Some remarks on the code as “battle‑worn,” over‑architected in places (Winamp 3 lineage), with entertaining comments and swearing.

Nostalgia, Alternatives, and Community Response

  • Strong nostalgia for Winamp’s UI, stability, and plugin/skin ecosystem; some call it peak audio player design.
  • Others point out existing open‑source clones and alternatives (XMMS, Audacious, qmmp, Foobar, WACUP, etc.).
  • A segment advocates ignoring the project until the license is fixed, seeing it mainly as PR and a bid for free labor under very one‑sided terms.

Will A.I. Be a Bust? A Wall Street Skeptic Rings the Alarm

Scope of Skepticism vs. Hype

  • Some argue Wall Street skepticism is about returns, not about AI’s technical merit; AI may be transformative but still a bad investment at current prices.
  • Others see finance as deeply detached from real value and dismiss a bank analyst’s “it’s not useful” claims as anecdotal and shallow.
  • Comparisons are made to past hype cycles (dot-com, crypto, metaverse, NFTs): useful tech can coexist with speculative bubbles and many failed firms.

Use Cases and Everyday Adoption

  • Many developers and knowledge workers report deep integration of LLMs into their workflows (coding help, summarization, translation, writing).
  • Non-tech users are reported to use ChatGPT for tasks like applications or roleplay, though most do not pay.
  • Machine translation (e.g., Chinese/Korean web novels, Mandarin text and screenshots) is cited as already “world-changing” in quality by some; others see it as impressive but incremental.

Business Models, Investment, and Moats

  • Concern that AI infra and model spend far exceeds current revenue; valuations assume huge future cash flows and/or AGI.
  • Frontier models are expensive and quickly commoditized by cheaper open-source models; investors may eventually balk at endless GPU and training costs.
  • Many “AI startups” are seen as thin wrappers over foundational models; likely to fail.
  • Enterprise contracts and B2B deals drive much of OpenAI’s revenue; ROI is often productivity, not directly measurable profit.

Jobs and Economic Impact

  • One side claims AI is already eliminating or consolidating white‑collar roles, especially rote tasks (support, basic content, reservations).
  • Others demand stronger data, arguing many “AI layoff” stories are PR spin, and macro indicators (unemployment, productivity) haven’t clearly shifted yet.
  • Broad agreement that AI can make individual workers more efficient; disagreement on whether this nets out to mass job loss or just role reshaping.

Technical Capabilities and Limits

  • LLMs are praised for big quality jumps in translation and code assistance but criticized for unreliability, hallucinations, and shallow understanding.
  • Some believe these weaknesses are inherent and will cap use in critical systems; others see rapid progress and expect continued improvement.

Long-Term Outlook

  • Many expect a financial correction or partial “bust” in AI stocks but still see AI as a long‑term technological boom.
  • There is speculation that societal value may be large while investor returns, outside a few winners (notably GPU vendors), may be modest.

OpenBSD now enforcing no invalid NUL characters in shell scripts

Scope of the OpenBSD Change

  • OpenBSD’s ksh now rejects NUL characters in any part of a shell script that is parsed or in history files.
  • Arbitrary bytes are still allowed after the executable script portion (e.g., at the tail of a file), but not in the middle of parsed script text.
  • The change shipped in snapshots for ~2 months and only broke one test program that implicitly relied on the old behavior.

Impact on Self‑Extracting Scripts and Binary Embedding

  • Classic self‑extracting shell+tar/shar mechanisms are mostly unaffected:
    • Appended payloads after exit or script end remain valid.
    • Traditional shar archives encode binary (uuencode/base64), avoiding NULs entirely.
  • Concern that some self‑extracting hybrids will break:
    • Cosmopolitan/APE binaries are repeatedly cited as likely affected because they embed NULs near the start of the file, inside the region ksh would parse.
    • Several commenters argue that bending historic shell behavior to support such esoteric hybrids is a bad tradeoff.
  • Some note this makes OpenBSD a good “strict” development platform that surfaces bugs early, even if it diverges from other shells.

Post‑Postel / Robustness vs Strictness

  • The change is framed as rejecting “Postel’s Law” for shells: no longer being liberal in accepting malformed inputs.
  • Many commenters support this shift, saying liberal acceptance:
    • Increases security risk and long‑term fragility.
    • Forces implementations to support quirks forever, harming interoperability.
  • Others argue that refusing malformed input gracefully is still compatible with the spirit of Postel’s principle.
  • HTML’s permissive parsing, TCP robustness, and newer documents criticizing Postel’s Law are cited as context for this “post‑Postel” mindset.

Related Filename & Parsing Hazards

  • Discussion broadens to Unix’s permissive filename rules:
    • Newlines, spaces, and option‑like names (--help) can break naive scripts, especially those that parse ls output.
    • Safer patterns include globbing, find -print0 + xargs -0, and strict quoting.
  • Some wish for filesystem‑level restrictions (e.g., forbidding “dangerous” characters), while others favor keeping POSIX’s generality and handling hazards in higher layers.

Other Side Topics

  • Questions about mksh availability (Android shell) and TLS/legal access issues on its site.
  • Brief praise for OpenBSD’s “sanity‑driven” changes, contrasted with other BSDs and Linux distributions.
  • Minor complaints about tone in the commit message and OpenBSD’s continued use of CVS.

Halide rejected from App Store because it doesn't explain why it takes photos

App Store Rejection Incident

  • A popular camera app update was initially rejected because its camera permission text said essentially “used to take photographs,” which review deemed insufficiently explanatory.
  • Many commenters find this absurd for a camera app whose sole purpose is taking photos, especially given its long history on the store and prior Apple promotion.
  • Later in the thread, it’s reported that Apple called the developers, acknowledged it as reviewer error, and allowed resubmission without changes.

Permission Prompts: How Explicit Should They Be?

  • One side argues the text was fine: users downloaded a camera app specifically to take photos, so extra explanation adds no value.
  • Others support Apple’s policy in principle: permission prompts should clearly explain purpose and context, not tautological statements.
  • Several propose slightly richer wording (e.g., “this is a camera app; it needs access so you can take photos when you choose”) as a reasonable bar.

Privacy, Data Protection, and Policies

  • Discussion broadens to Play Store and GDPR-style rules: some apps were forced to add privacy/data protection policies even when processing seems local or minimal.
  • There’s disagreement over when a developer is a “data controller” or “processor,” and whether on-device-only processing still requires formal policies.
  • Many accept that stores can require a policy regardless of legal thresholds; others see it as overreach or legal misinterpretation.

Monopoly, Regulation, and Sideloading

  • Strong sentiment that Apple (and to a lesser degree Google) have too much control over what software can run on mobile devices.
  • Proposals include regulation, mandated sideloading, open web installs, or multiple app stores; skeptics warn regulation could add more bureaucracy.
  • Some argue the term “sideloading” itself is misleading, implying Apple has legitimate authority over owner-controlled devices.

Developer Experience & Consistency

  • Multiple developers recount arbitrary, inconsistent rejections on both App Store and Play Store, sometimes blocking time-sensitive launches.
  • Criticism focuses on opaque review processes, low-context reviewers, and lack of meaningful support despite the platform’s revenue share.
  • A minority defend strict reviews as beneficial for user security and UX, even if individual cases are frustrating or occasionally farcical.

Show HN: OpenFreeMap – Open-Source Map Hosting

Use cases & demand

  • Many commenters want a free or predictable-cost alternative to Google Maps/Mapbox after painful price hikes and surprise bills.
  • Proposed uses include small business sites, neighborhood “rolodex” maps, civic hackathon projects, GPS tracking, startup apps, offline/low‑bandwidth use, and accessibility tools for visually impaired navigation.
  • Several see OpenFreeMap as a drop‑in backend replacement for existing Leaflet/MapLibre apps, or as a backup to commercial providers.

Data sources & customization

  • Property boundaries in the US are typically available via county GIS systems or tax assessor sites; commercial datasets (ReGrid, Corelogic) fill gaps.
  • House numbers and POIs exist in the tiles but often aren’t shown by default; users can expose them by editing styles (e.g., with Maputnik).
  • Some specialized maps (cycling) are hard to replicate because the OpenMapTiles schema compresses certain tags.
  • Historical basemaps are requested; people point to OpenHistoricalMap and various historical map services, but coverage and accuracy are limited.

Architecture & formats

  • OpenFreeMap distributes a Btrfs filesystem image of ~300M tiny tile files, served directly by nginx.
  • Btrfs is chosen over ext4/ZFS due to inline small-file storage and flexible inode handling; about 60% of files live in metadata, saving space and boosting performance.
  • Heavy use of hard links (e.g., ocean tiles) reduces duplication; scripts handle the ~64k hard-link limit per file.
  • Alternatives discussed:
    • MBTiles (SQLite), PMTiles (single-file archive), Versatiles, Apache Baremaps, EROFS images.
    • Planetiler + Geofabrik for generating regional mbtiles/pmtiles.
  • Benchmarks show nginx+Btrfs can saturate a 1 Gbps line; the bottleneck is bandwidth, not CPU.

PMTiles vs Btrfs debate

  • PMTiles advocates emphasize serverless/static hosting and CDN edge caching.
  • OpenFreeMap’s author reports poor latency with large (80–90 GB) PMTiles over Cloudflare range requests, especially on cold cache.
  • Others note good range performance on S3 and in genomics workloads, suggesting Cloudflare/R2 specifics may be the real problem.
  • There’s interest in head‑to‑head benchmarks (nginx+Btrfs vs pmtiles-serve vs Versatiles).

Costs, sustainability & monetization

  • Current setup: several Hetzner dedicated servers with flat‑rate bandwidth; target is roughly $175/month covered by sponsorships/donations.
  • Commenters warn about relying solely on donations and suggest: explicit business plans, paid tiers with SLAs, separate “free” and “premium” server pools, or commercial support/consulting.
  • CDN options (Fastly, Cloudflare, Bunny) are discussed; sponsorships might help, but per‑TB pricing is often far higher than Hetzner’s effective cost.

Move Fast and Abandon Things

Abandoning Projects vs. Finishing Them

  • Some read the article as “normalizing abandonment” and see that as wasteful; they stress learning by finishing things.
  • Others argue this is a misreading: the point is rapid prototyping, early discovery of fatal flaws, and rejecting sunk-cost fallacy.
  • Several note that “finishing” is its own hard skill; one strategy is to deliberately choose very small projects to practice completion.
  • A few suggest “resolution” or explicit closure (deciding something is done or dropped) matters more than literal completion.

Value of Experimentation and Play

  • Many defend abandoned projects as R&D: you learn techniques, reuse code/assets later, or discover better designs.
  • Examples include glassblowing experiments, gameplay simplifications that improved UX, and revisiting old code to add accessibility.
  • Some see joy and “time you enjoy wasting” as intrinsically worthwhile, especially for creative and artistic goals.

Personal Scope, Constraints, and Retro Development

  • Several commenters emphasize shrinking scope to avoid burnout and actually ship something.
  • Others praise limited platforms (old Macs, Playdate) and 1‑bit art: constraints spur creativity and make systems easier to reason about.
  • There’s nostalgia for earlier eras when solo devs could ship distinctive work without towering dependencies.

Organizational Practices, MVPs, and Tech Debt

  • At company scale, “move fast” is seen as riskier: MVPs often ship as production systems and accrue painful technical debt.
  • Some describe patterns where “rockstar” developers prototype and leave, while others inherit fragile code and long‑term maintenance.
  • Others defend MVPs as necessary to test market fit; the real failure is stopping at MVP and never hardening the system.
  • Several call for a middle ground: real design phases plus iterative prototyping, willingness to throw away first drafts, and strong ownership.

UBI and Creative Output (Tangent)

  • One subthread links abandoned personal projects to broader questions of basic income and time for self‑directed work.
  • Supporters think UBI would unlock latent creativity and risk‑taking; critics foresee dependency, inflation, and social decay.
  • Participants cite mixed pandemic experiences as anecdotal evidence for both sides; overall impact is left as unclear.

Jetstream: Shrinking the AT Protocol Firehose by >99%

Jetstream design and compression choices

  • Jetstream is an unofficial optimization layer over the AT Protocol firehose, converting protocol events into simpler JSON for easier consumption.
  • Two modes exist: uncompressed JSON and Zstandard (zstd) with a custom dictionary; compressed mode shrinks bandwidth by >99% according to the article.
  • Some argue there’s no need for an uncompressed stream in a new protocol; others say uncompressed is simpler for local/testing use and for generic tools (websocat, pipes) that expect plain JSON.
  • Compressed mode requires clients to know the custom zstd dictionary, which is seen as a usability barrier for ad‑hoc or language‑agnostic consumers.

WebSockets vs SSE and compression strategy

  • One camp suggests Server-Sent Events plus gzip for simplicity and standard tooling.
  • Others counter that zstd with a shared dictionary gives better compression at this scale and enables “compress once, serve many,” reducing server CPU.
  • WebSocket tooling is described as more mature and ergonomic than SSE in most languages.

Security, verification, and “throwing features away”

  • Critics worry Jetstream trades away important security and integrity properties from the full firehose (signatures and MST proofs) for performance and ease of use.
  • The full firehose allows verifying that repo updates are signed and non‑omitting; Jetstream’s reduced stream omits these guarantees.
  • Some ask whether parts of these security features could be reintroduced while keeping Jetstream’s simplicity.

Federation, centralization, and relays vs ActivityPub

  • A major thread debates whether AT Protocol is “really federated” if large, central relays are practically required for discovery and aggregated views.
  • Defenders say:
    • PDS (personal data servers) are the true sources of truth; relays are “trustless aggregators” and an optimization.
    • Clients can in principle fetch directly from PDSs (pull-based model), similar to ActivityPub, but then inherit ActivityPub-like discovery problems.
  • Critics respond that in practice the main relay is central and critical, and that running without it is unsupported or impractical.

Scale, cost, and performance

  • Pre-surge firehose volume was ~24 GB/day; a surge took it to ~232 GB/day, with relay peak output >8.5 Gbps to 250+ subscribers.
  • Some argue the raw bandwidth (tens of Mbps) is cheap, so dev time on compression seems overkill.
  • Others note:
    • Bandwidth multiplies across many subscribers; compression extends how long a single, unsharded firehose remains viable.
    • Hobbyists can reportedly run full relays for roughly €75–$150/month.
    • Jetstream makes the ecosystem more approachable for small operators and developers.

Naming and terminology confusion

  • Multiple commenters initially misread “AT Protocol” as Hayes modem AT commands and “Jetstream” as NATS JetStream, highlighting naming collisions and jargon assumptions.
  • Some feel the article should have introduced AT Protocol more clearly for a general audience.

The ambition of Microsoft Flight Simulator 2024

Overall Reaction to MSFS 2024

  • Many are surprised there is a new standalone version instead of continuing MSFS 2020 indefinitely, but are generally excited by the announced improvements.
  • Long‑time users describe MSFS as life‑changing or career‑influencing, with some using it to plan real-world flights or even pursue pilot licenses.
  • Some console players found it less “fun” than expected, especially if coming from arcade-style flying like GTA.

VR Experience and Motion Sickness

  • Several users praise MSFS 2020 in VR as “astonishing” and deeply immersive, calling it a killer app for VR.
  • Others report severe motion sickness in any sim where the view moves without matching body motion, including taxiing or slow driving; some note motion sickness pills didn’t help.
  • Control setups vary: HOTAS, yokes, pedals, Xbox controllers, and VR controllers. Cockpit interaction in VR is possible but fiddly, especially with knobs.

Earth as a “Digital Twin” and Scientific Value

  • The Earth model is praised from the air but criticized for incoherence at ground level (odd rivers, solid bridges, weak urban detail vs Google Earth).
  • Some want broader uses (robot training, driving sims, real-world GTA, education), citing historical precedents like Microsoft ESP and GTA-based research.
  • Others argue the “Earth copy” is largely visual/procedural and not suitable for serious science or meteorology.
  • Discussion branches into whether one engine can serve both gaming and scientific modeling, and into skepticism vs optimism about AI/AGI progress.

Gameplay, Career Mode, and Accessibility

  • A recurring complaint about MSFS 2020 is lack of missions or narrative; some see this as a barrier for players not motivated by pure simulation.
  • MSFS 2024 is expected to add a “career mode” with structured missions (e.g., cargo, agriculture, SAR), progressive licenses, and some story framing—compared by some to “Euro Truck Simulator in the air.”
  • Others argue that as a “simulator” its core purpose is realistic sandbox flying, and narrative layers risk diluting that.

Cloud, Streaming, and Platform Concerns

  • There is confusion and concern over how much of 2024 will be cloud-dependent:
    • Some believe it will stream rendered video; others cite statements (not in the linked article) saying only needed textures/meshes/map data are streamed.
  • Users worry about:
    • Game viability on slow/metered connections.
    • Eventual server shutdown making the sim unusable.
    • Possible future shift to a subscription model.
  • Some prefer the large local install model of 2020 despite the disk and setup cost.

ATC and AI Enhancements

  • The built-in ATC is widely criticized as outdated, unrealistic, and sometimes unsafe (bad vectors, altitude calls).
  • Several point to third-party, LLM-based ATC projects as promising, and find it surprising Microsoft hasn’t integrated similar tech given its AI investments.

Comparisons to Other Sims and Spin-Off Wishes

  • Users compare MSFS with X-Plane, DCS, Falcon BMS, Euro/American Truck Simulator, BeamNG, etc., each seen as excelling in different niches (GA, airliners, military, driving, campaign systems).
  • Some wish for:
    • A true real-world driving sim over MSFS’s Earth.
    • A revival of Microsoft Space Simulator or deeper space/atmospheric physics like in certain X-Plane scenarios.

Colocation: Non-Clown Hosting

Economics of Colocation vs Dedicated/Cloud

  • Many report that single‑server colo is significantly more expensive than renting a dedicated server or VPS, especially in major cities.
  • Colo becomes cost‑effective when:
    • You need lots of disks (tens–hundreds of TB) and already own or amortize drives.
    • You need high‑end or specialized hardware (e.g., big RAM, GPUs, custom storage) that’s uneconomical to rent.
    • You fill a large fraction of a rack; per‑U pricing improves with scale.
  • Others argue that cheap dedicated servers are often old/buggy and that good refurbished hardware in colo can be better value over 5+ years.
  • Several note that cloud can be cheaper on TCO for small/medium workloads once you count labor, maintenance, and scaling convenience, especially with spot/preemptible instances.

Scale, Audience, and Use Cases

  • General consensus: colo is primarily for racks and businesses, not single VPS equivalents.
  • Good fits mentioned: GPU farms, heavy storage, running your own ASN/peering, serious homelabs, long‑lived services (email, CI, Git, game servers).
  • Poor fits: “just a Raspberry Pi,” simple hobby sites, or a single small VM.

Home Hosting vs Datacenter

  • Many advocate just hosting under a desk or in a basement for light workloads, leveraging cheap fiber where available.
  • Tradeoffs:
    • Pros: lowest cost, immediate physical access, good enough for low‑traffic services.
    • Cons: power/internet outages, weaker physical security, sometimes bad peering.

Networking, CGNAT, and Workarounds

  • Carrier‑grade NAT is common in some regions, especially mobile and some fixed‑wireless; it complicates home hosting.
  • Workarounds discussed: cheap VPS as a bastion, tunneling tools (WireGuard, Tailscale, others), reverse tunnels, or simply choosing ISPs with public IPv4/IPv6.

Operational Considerations

  • Strong emphasis on:
    • Out‑of‑band access (IPMI, serial consoles, VPN to management LAN).
    • “Real” server hardware (ECC RAM, IPMI, hot‑swap drives) for reliability.
    • Backups from day one (to home servers and/or backup services).
  • Some celebrate never touching hardware again and prefer cloud APIs; others value hands‑on control and learning.

Market, Pricing, and Accessibility

  • Colo pricing varies widely by location; power costs (e.g., in Germany) can dominate.
  • Complaints that many providers hide prices or won’t talk below half/full racks; this deters hobbyists.
  • Examples shared of specific deals (cheap cabinets, 1U offerings, coworking‑style colo) and interest in prepaid or hard‑cap plans for risk‑free experimentation (e.g., for kids).

Maker Pipe – Structural Pipe Fittings for DIY Builders

Use Cases and Appeal

  • Many commenters like the idea of modular fittings for quick DIY builds: truck-bed and overlanding racks, garden structures, greenhouses, chicken runs, curtains, desks, closets, railings, e‑bike trailers, and Burning Man / shade structures.
  • The ability to bend EMT with common tools and buy it locally is seen as a big convenience win for “good enough” projects.
  • Maker Pipe Minis and the open-source STLs get strong praise as a low-cost way to prototype designs (and even as a kids’ building toy).

Material Choice and Structural Concerns

  • Strong skepticism about EMT as a “structural” material, especially for human loads.
  • Several note that EMT is designed to protect wires, not carry loads, and can be bent by hand in smaller sizes.
  • Some cite bending visible in Maker Pipe’s own stress-test/table videos as evidence it’s marginal for serious structural use.
  • Others argue EMT is fine when used in compression, with short members, or for light, static loads (trellises, shade, netting).

Alternatives and Comparisons

  • Suggested stronger systems:
    • Structural steel tube (round/square), black pipe, rigid metal conduit (RMC), and “structural pipe” lines at big-box stores.
    • Kee Klamp and similar clamp systems for larger diameters / heavier duty.
    • Unistrut/strut channel for better hardware ecosystem.
    • 80/20-style aluminum T-slot for machines and rigid frames, despite 3–4× cost.
    • Linear rails and aluminum extrusions for vehicle racks and workbenches.
    • PVC (with caveats about UV and environmental impact) for cheap garden projects, often with 3D‑printed connectors.

Safety, Quality, and Sourcing

  • Debate over buying structural fittings from Alibaba/AliExpress or Amazon:
    • One side: reputable suppliers (McMaster, Fastenal, etc.) are essential for anything that could hurt someone.
    • Other side: for “normal” non-critical use, extra safety margin can offset lack of documentation.
  • Concerns about friction-based clamping and set screws loosening over time.

Pricing, Bundles, and Availability

  • Individual fittings are seen as pricey; bundles are criticized as offering minimal discount and poor mix of parts.
  • Slow/expensive shipping outside the US is a barrier; European readers point to local structural-pipe systems instead.

Measurement, CAD, and Misc.

  • The EMT nominal “1 inch” size is actually ~27 mm OD and not directly compatible with true 1" parts.
  • CAD models for connectors are appreciated for planning and digital design.
  • Some suggest that welding and simple fabricated brackets may be cheaper and stronger for custom, load-bearing builds.

Dumped orange peel transformed a barren pasture (2017)

Article framing & context

  • Several commenters find the HN title misleading: the site was a degraded pasture, not a true desert.
  • The original source is a 2017 Princeton piece; the ScienceAlert article is a light rewrite.
  • Some ask whether similar orange-peel projects have been repeated or legally enabled since; no answers in thread.

Fate of orange peels & decomposition

  • Typical uses mentioned: drying and chopping peels as cattle feed; in some places, burning them; elsewhere, likely landfill.
  • The Costa Rica case was partly about saving transport costs by dumping near the factory.
  • Decomposition involved a smelly, sludgy, larvae-filled phase; people muse about integrating chickens or soldier-fly operations to turn larvae into animal feed.

Soil effects, acidity, and mechanism

  • Commenters note that adding large amounts of organic matter predictably boosts soil fertility.
  • There’s debate about citrus acidity: juice is acidic; peels less so. Acidity is said to be temporary as organic acids are metabolized.
  • One view is that the low pH helped kill invasive grasses, opening space for longer-lived native species.
  • Others question the “mystery mechanism,” arguing this is a single, uncontrolled case that should be replicated before strong causal claims.

Biodiversity and ecosystem considerations

  • Some warn that “lush and green” is not always higher biodiversity; nutrient-poor or arid systems can host specialized species.
  • Counterpoint: this land was already human-degraded and choked with invasives, so restorative intervention seems appropriate.

Agriculture methods & permaculture parallels

  • The story prompts discussion of composting, permaculture, forest gardening, intercrops like the “Three Sisters,” and rapid regrowth in rainforest contexts.
  • Mixed plantings are seen as beneficial but sometimes over-romanticized and not always higher-yield in practice.

Scaling, labor, and automation

  • People speculate about using robotics and computer vision to manage complex polycultures at scale.
  • There’s debate over labor shortages in agriculture, rising wages, and whether highly manual systems can remain economical.

Waste, circular economy, and logistics

  • The case is framed as an example of matching “nutrient-rich waste streams” with “nutrient-limited degraded ecosystems.”
  • Broader circular-economy ideas arise: reusing organic waste, composting sewage, and even using human urine as fertilizer.
  • Practical constraints include contamination risks and extra transport emissions.

Legal and ethical issues

  • A rival orange company successfully sued to stop the project, officially for “defiling” a national park.
  • Some see this as corporate jealousy; others call it a rational competitive move in the absence of penalties.
  • There’s extended debate about the gap between what is legal for corporations and what is environmentally ethical, and whether firms have any duty beyond profit.

Pesticides and safety

  • One concern: pesticide residues on peels.
  • Replies assert that modern pesticides generally degrade, with regulated pre-harvest intervals and washing; one commenter questions whether huge, localized quantities might behave differently.

Home composting experiences

  • Multiple users share composting practices: mixing kitchen scraps (including citrus), yard waste, and using various bin designs.
  • Techniques to manage rodents include buried bins, “hot” composting, adding predator perches, or just relying on cats.
  • Several report that running a compost system is unexpectedly satisfying, akin to automating a useful process.

WP Engine sent “cease and desist” letter to Automattic

Background of the dispute

  • Automattic’s CEO publicly attacked WP Engine (WPE), calling it harmful to WordPress and criticizing its technical choices (e.g., limiting post revisions).
  • WP Engine responded with a cease and desist letter alleging defamation, trademark overreach, and tortious interference, and published it for community consumption.
  • The conflict centers on hosting, branding, and who “gives back” enough to the open‑source WordPress project.

Trademark and licensing arguments

  • Automattic / the WordPress Foundation assert WPE’s marketing (e.g., “#1 WordPress platform/hosting/tech company” and plan names like “Essential WordPress”) improperly implies official status and exceeds the published trademark policy.
  • Others reply that:
    • The policy itself explicitly allows descriptive uses like “world’s best WordPress themes.”
    • Using “WordPress hosting” is likely nominative fair use; you can describe what you actually host.
    • The policy says “WP” is not covered, and that clause existed long before this dispute.
  • There is criticism of structural conflicts of interest: the nonprofit owns the marks, but Automattic holds the exclusive commercial license and is also a direct competitor to WPE.

Allegations of extortion / unfair competition

  • The C&D cites messages where Automattic’s CEO allegedly:
    • Demanded ~8% of WPE revenue (or equivalent in developer time) for a trademark license.
    • Suggested he could change his keynote content depending on whether WPE paid.
  • Some commenters view this as attempted shakedown or “mob boss” behavior; others frame it as enforcing a license on a major commercial beneficiary.
  • Use of the WordPress dashboard news/RSS widget to broadcast a strongly critical post about WPE to WPE‑hosted sites is seen by many as abusive or anti‑competitive.

Community reaction and optics

  • Many call Automattic’s behavior childish, hypocritical, or reputationally damaging, especially given past rhetoric about software freedom and prior investment in WPE.
  • A minority defend Automattic’s right (and duty) to police trademarks and highlight that WPE contributes relatively little to core compared to its revenue.
  • Some expect significant fallout for leadership; others think Automattic still holds most community credibility.

Broader views on WordPress and hosting

  • Long subthreads debate WordPress quality, security, and plugin chaos versus its huge usability and ecosystem advantages.
  • WP Engine is widely described as expensive but valuable for non‑technical teams and overworked IT—“it’s the only reason I still tolerate WP” appears as a theme.
  • Others argue static sites or alternative CMSes (Laravel‑based, Kirby, Drupal, Statamic, Squarespace/Webflow, etc.) are superior but lack WordPress‑level ecosystem and familiarity.

iPhone 16 Pro Storage Expansion 128GB to 1TB [video]

Cost of NAND vs Apple’s Pricing

  • Commenters estimate 1 TB mobile NAND around $100–130 retail per chip; significantly cheaper in bulk.
  • Industry prices are usually quoted in bits (e.g., 8 Tbit = 1 TB) at the NAND-die level.
  • Many see Apple’s $500 storage upsell as extreme markup relative to component cost.

Technical Process and Craftsmanship

  • Viewers are impressed by the precision: disassembly, foam gasket removal, and especially CNC grinding the original NAND.
  • The original chip is epoxied/underfilled to the PCB; heating enough to desolder it risks damaging nearby components and the opposite side of the board.
  • CNC removal is presented as safer and more consistent than hot air for an underfilled BGA.
  • Underfill epoxy is said to help shock resistance and cope with thermal expansion.
  • The torque screwdriver “clicks” are noted; some find the whole video almost ASMR-like.
  • Foam inside is speculated to serve vibration damping, acoustic tuning, and thermal equalization.

Storage Needs and Removable Storage Debate

  • Some say phone storage barely matters due to cloud offload (photos, videos).
  • Others strongly prefer local media and backups: offline access, bandwidth/battery concerns, distrust of cloud providers, and cost comparisons.
  • Use cases for large local storage include RAW/pro video and multiple on-device LLM models (tens–hundreds of GB).
  • Many lament the lack of SD/microSD or any user-expandable storage; others argue current OS/storage performance needs make soldered primary storage standard.
  • There’s debate over whether waterproofing truly precludes card slots and removable batteries; examples of water‑resistant phones with those features are cited.

Repairability, Lock‑In, and Apple’s Business Model

  • Grinding the original NAND “to dust” is seen as emblematic of non‑upgradable modern hardware.
  • Some argue Apple’s storage and RAM segmentation is pure price discrimination and a sign of weak competition/oligopoly.
  • Complaints extend to Macs’ soldered RAM/storage and rapid obsolescence, seen as generating e‑waste and inflated upgrade costs.
  • Others justify choosing Apple anyway: long software support, perceived quality, security, and better overall integration than Android alternatives.

Feasibility, Limits, and Lock‑Down

  • Questions arise about whether larger-than-official capacities (2–8 TB) would work; some suspect firmware/SoC controller limits tied to Apple’s official configs.
  • For Macs, there’s mention that even “modular” NAND is effectively vendor‑locked via controller behavior/serialization.
  • The mod is widely admired technically, but many doubt it is economically viable at scale given equipment, skill, donor parts, and risk.

We fine-tuned Llama 405B on AMD GPUs

Project Overview & Goals

  • Team fine-tuned Llama 3.1 405B on 8× AMD MI300X using JAX instead of PyTorch.
  • Strategy: port models to JAX, rely on XLA’s hardware-agnostic HLO graphs to target non-NVIDIA backends (TPUs, AMD, Trainium) with minimal code changes.
  • Same JAX Llama3 implementation reportedly runs on both TPUs and AMD GPUs without modification.

JAX vs PyTorch on Non-NVIDIA Hardware

  • Claim: PyTorch is tightly coupled to NVIDIA (e.g., CUDA-specific paths, opaque performance differences), making non-NVIDIA support painful.
  • Counterpoints:
    • Multiple users report PyTorch+ROCm working “out of the box” on AMD, including torch.compile, and existing LLM training stacks (axolotl, torchtune, LLaMA-Factory).
    • Some note that functions like scaled_dot_product_attention have non-CUDA implementations and also work on TPUs.
  • Debate on “transparency”: whether PyTorch’s explicit CUDA-optimized kernels or XLA’s pattern-matching to vendor libraries is more transparent or portable remains contested.

Performance & MFU

  • Initial run: ~35 tokens/s, batch size 16, seq length 64, eager JAX, no gradient accumulation.
  • Several commenters calculate ~0.5–0.8% Model FLOPs Utilization (MFU), calling this “quite bad” and far from typical 30–40% for well-tuned training.
  • Author attributes this to lack of JIT compilation and other optimizations; plans to re-run with JIT, gradient accumulation, activation checkpointing, and better sharding.
  • Some mention significantly better MI300X performance elsewhere, including claims of MI300X being competitive with or faster than H100, but details are sparse.

Correctness & Porting Concerns

  • Concern: framework-level differences and floating-point nuances can cause subtle accuracy drift when porting from PyTorch to JAX.
  • Response: current validation uses an AI-based comparison tool; more robust testing infra is planned.
  • Note that cross-framework model translations (e.g., Gemma JAX→PyTorch) are common, but debugging mismatches can be very hard.

AMD Ecosystem: ROCm, Vulkan, Consumer Cards

  • Mixed experiences with ROCm:
    • Some report smooth installs via official ROCm PyTorch/JAX containers.
    • Others struggle with distro/kernel compatibility, driver versions, and short support windows for consumer cards.
  • For inference, several suggest Vulkan backends (e.g., llama.cpp, IREE) as easier to set up; however, benchmarked results show ROCm can be 40–200% faster than Vulkan on a 7900 XTX.
  • Consumer AMD GPUs (e.g., 7900 XTX) can reach roughly RTX 3090-like performance in some LLM benchmarks; 4090 often significantly faster but with cost/VRAM tradeoffs.

Cost, Hardware Choice & Availability

  • Opinions on performance-per-dollar: one view ranks TPU > AMD > NVIDIA; others dispute that TPUs are “slow,” pointing to Google’s own training workloads.
  • Some cloud providers and smaller vendors rent 8× MI300X nodes; bare-metal ownership requires buying 8-GPU servers with substantial power and cooling needs.
  • There is interest in multi-node MI300X scaling; reports suggest it is challenging but improving, though concrete public benchmarks remain limited.

Tooling & Alternatives

  • JAX’s Pallas subsystem and example Flash Attention implementation are mentioned as promising for performance.
  • Tinygrad is seen as interesting but immature compared to JAX.
  • Some suggest existing JAX Llama implementations like MaxText as baselines for better MFU.

Averaging is a convenient fiction of neuroscience

Averaging in Neuroscience and Signal Processing

  • Several commenters liken averaging to a low‑pass filter: it smooths away high‑frequency structure that might contain meaningful temporal codes.
  • Distinction is made between smoothing within a single spike train (uncontroversial) and averaging across many trials with variable timing (can erase real structure without being a true low‑pass filter).
  • Some describe models where gamma‑frequency oscillations gate which neurons fire in brief windows, explicitly using high‑frequency timing rather than rate codes. Others note the mechanisms and roles of brain rhythms (e.g., gamma) remain uncertain and may not map cleanly onto “clock” metaphors.

Limits of Averages and Statistical Misuse

  • Strong criticism of treating averages as complete descriptions, especially in skewed, bimodal, or fat‑tailed distributions.
  • Examples: aircraft cockpits designed for the “average” pilot fit almost no one; policies aiming at the “middle” can fail both sides.
  • Some argue problems arise less from normal‐distribution assumptions and more from practices like model post‑selection and weak statistical literacy.

Historical Life Expectancy Debate

  • One side claims ancient adult modal lifespans were in the 70s–80s and that low averages mainly reflect child mortality.
  • Others counter with historical data (e.g., population pyramids, UK records, Our World in Data) showing substantial adult mortality and improvements at all ages, not just infancy.
  • Disagreement over the usefulness of mode vs mean for life expectancy; consensus that averages alone are misleading but no agreement on exact historical numbers.
  • Some distrust specific data sources and highlight uncertainty in paleodemographic reconstruction.

Neural Coding vs Artificial Neural Networks

  • Timing of spikes, not just firing rates, is emphasized as critical in biological neurons, unlike most machine learning models.
  • Comparisons suggest ANN “neurons” more closely resemble aggregate firing‑rate functions (e.g., F‑I curves) than real spiking units.
  • Multiple comments stress that brain computation involves synapse counts, glial cells, neuromodulators, astrocytes, and plastic, dynamic wiring, making simple neuron/parameter comparisons to ANNs inadequate.

Measurement Limits, fMRI, and “Scientism”

  • Discussion that scientific consensus often follows what tools can measure; averaging may be a pragmatic “streetlight” strategy until better tools exist.
  • Concerns raised about over‑interpretation of fMRI “areas lighting up” and about oversimplifying brains as pure spike‑based digital systems.
  • Extended side‑thread critiques “scientism” (treating current scientific consensus as final dogma) versus science as creative, skeptical, evolving inquiry, with mentions of replication problems in some fields.

Two in three shoppers won't buy products in locked display cases

Customer Reactions to Locked Cases

  • Many commenters say they avoid locked products unless they absolutely need them.
  • Pain points: difficulty finding staff with keys, long waits, pressure to choose quickly without comparing prices/features, and awkward processes (escorted items, forced separate checkout).
  • Some describe simply leaving and buying online or at another store, especially for non-urgent or impulse items.
  • Locking basics (toiletries, OTC meds, razors, condoms) is seen as especially counterproductive; several note it’s “near impossible” to buy these in practice.

Self-Checkout, Staffing Cuts, and Legal Risk

  • One view: in high‑trust societies, self‑checkout is convenient and fast, especially when implemented well.
  • Others resent doing unpaid labor under surveillance, with poor UX (“unexpected item” errors) and cramped bagging space.
  • Some worry about legal risk from accidental missed scans and bans or charges resulting from system glitches.

How Bad Is Shoplifting? Conflicting Claims

  • One camp believes shoplifting has clearly worsened (trash bags full of goods, high-value items fenced via Amazon/FB Marketplace), and notes industry stats and visible security measures.
  • Another camp is skeptical, arguing crime overall is down, “organized retail crime” is overblown, and cabinet policies are often applied even in low-crime suburbs.
  • There is disagreement over whether recent declines in corporate “shrink” mentions mean the crisis has faded or just moved.

Liability, Enforcement, and Violence Debates

  • Many say chains tell staff not to intervene due to liability for injury, unlawful detainment, or use of force.
  • Some blame prosecutors and DAs for “lax” enforcement; others push back, emphasizing rule of law and risks of corporate or vigilante violence.
  • There are sharp arguments over whether private security should be allowed to use physical force, and strong disagreement on dehumanizing language about shoplifters.

Business Models, Insurance, and Misaligned Incentives

  • Some suspect insurers and distant executives drive “lock it up” mandates, even where local theft is low.
  • Others argue big-box stores miscalculated: locking goods raises operating costs and drives customers to online or smaller competitors.
  • A few suggest companies may also exploit theft narratives as cover for closing underperforming stores.

Nova by Panic: Native Mac code editor

Pricing and Value

  • $99 price sparks debate.
  • Some argue cheaper or free Mac editors (CodeEdit, CotEditor, etc.) should be tried first.
  • Others say for professionals, time spent tuning free tools can cost more than $99; a paid tool that is “good enough” can be rational.
  • Counterpoint: in modern dev, many best-in-class tools (especially editors/IDEs) are open source and free, so price ≠ quality.

Positioning vs Other Editors/IDEs

  • Nova is seen as more than a plain text editor: it organizes projects and targets web workflows, somewhat like its predecessor Coda.
  • Compared to VS Code and JetBrains: Nova is praised for feeling more integrated and “native” on macOS, but lacks their breadth and ecosystem.
  • Some users still prefer JetBrains or specialized IDEs (e.g., RubyMine) for serious language-specific work.
  • Complaints that Nova struggles with large projects (10k+ files) and seems to reindex heavily, while Sublime remains smooth.

“Native” / Mac-Assed Experience

  • Major thread on what “native” means:
    • Visual: standard Mac windows, title bars, controls.
    • Organization: proper use of menu bar, conventional settings layout.
    • Behavior: macOS-standard shortcuts, gestures, shared “find” pasteboard, scrolling vs cursor movement conventions.
    • Some also equate “native” with non-Electron, compiled apps.
  • Nova is praised as a “Mac-assed” app that respects platform conventions and feels more Mac-like than many cross-platform tools.
  • Others find its custom UI (tabs in title bar, icons, color schemes) visually off or “unnative.”

Features, Workflows, and Remote Dev

  • Good fit reported for certain workflows (e.g., embedded C with specific plugins, light web/PHP/markdown work).
  • Criticism that web language support (especially CSS parsing/highlighting) is flawed by design.
  • Remote workflows:
    • Nova supports SFTP editing but it’s described as slow, with limited plugin compatibility.
    • No alternative is seen as matching VS Code’s Remote SSH/DevContainers experience; Nova is not a replacement here.

Broader Ecosystem and Indie Mac Apps

  • Some buy Nova mainly to support Panic due to its history and polish (Transmit, other products).
  • Nostalgia for the older boutique Mac app ecosystem; complaints that Electron and the Mac App Store culture have hurt quality native apps.
  • Discussion of Apple’s macOS direction and SwiftUI: seen by some as immature and less “Mac-like,” contributing to fewer rich native apps.

Overall Sentiment

  • Mixed-to-positive: strong appreciation for Nova’s native feel, design, and focused simplicity, but notable concerns about price, large-project performance, incomplete language/remote support, and subjective dislike of its visual style.

Twitter/X will let people you've blocked see your posts

What Is Changing (per thread)

  • Blocked accounts will still be unable to reply, quote, or DM, but will be able to view the blocker’s public posts while logged in.
  • Several commenters note that today you can already work around a block via alts or (sometimes) logged‑out views, though X’s logged‑out experience is now heavily restricted.

Arguments Supporting the Change

  • Public posts are, by definition, public; trying to hide them from specific users is seen as “security theater” that’s easily bypassed.
  • Current behavior gives users a misleading sense of safety and adds confusing, inconsistent UX (“can’t see while logged in, can via another account”).
  • Some argue this clarifies that X is a broadcast medium, more like shouting in a public square than talking at a private table.
  • A few like that it prevents “weaponized blocking” (blocking to get the last word or to secretly slander people who can’t see the accusations).
  • One view: blocking should primarily be “I don’t want to see you / interact with you,” not “you may not see my public speech.”

Arguments Opposing the Change / Safety Concerns

  • Many see blocking as a harassment‑reduction tool: hiding posts and adding friction makes it harder for stalkers, brigades, and “pile‑ons” to organize.
  • Even imperfect friction works; most harassers won’t bother with alts or incognito. Removing it disproportionately harms victims vs. determined abusers.
  • Concerns for targets of domestic abuse, stalking, or marginalized groups who rely on blocking to keep abusers out of their “local public.”
  • Some argue this undercuts the “restraining‑order‑like” function of blocking and caters to trolls and dog‑pilers.

Debate Over What Blocking “Should” Mean

  • One camp: blocking = self‑protection and interaction control only; visibility of public posts shouldn’t be affected.
  • Another camp: blocking = the right to exclude specific people from one’s audience, even for public content.
  • Disagreement over whether this strengthens or weakens echo chambers.

Speculated Motives for X

  • Increase engagement via outrage by exposing people to content from those they’ve blocked (or at least letting blockees keep monitoring targets).
  • Make advertisers harder to “block away.”
  • Simplify infra / avoid expensive per‑view block checks (some speculate about database or compute savings).
  • Personal/ego theories about leadership being widely blocked; others counter that a private “god mode” would be easier if that were the goal.
  • Some suggest alignment with AI training or future product directions; others find those theories incoherent.

Comparisons to Other Platforms & UX

  • Reddit and Facebook have strong, sometimes confusing, bidirectional blocks that can hide whole subtrees of conversation.
  • Discord and others often treat blocking as one‑way “ear plugging,” not audience control.
  • Bluesky is highlighted for strong, “nuclear” blocking; Mastodon and fediverse praised for smaller, more civil communities.
  • Many complain that X overall is more toxic, bot‑ridden, and outrage‑driven since the acquisition; others say they now enjoy it more with careful curation and heavy use of block/mute.

Octopuses seen hunting together with fish

Interpretation of octopus–fish behavior

  • Some see the “punching” as cooperative herding: octopuses pushing fish to contribute to group hunts or repositioning them over prey.
  • Others are skeptical, suggesting simpler explanations: defending food from thieves, keeping competitors away, or noise/distraction for hunting.
  • Debate over whether this implies “theory of mind” between octopus and fish; some argue basic conditioning could explain it without complex mental models.
  • Several commenters caution against “Disneyfying” the footage or over-reading a short video, while others point to the underlying study with much more data.

Intelligence, sentience, and ethics of eating animals

  • Many express awe at octopus intelligence and social complexity; some say this has motivated them to stop eating octopus.
  • Others argue intelligence alone isn’t a sufficient reason to avoid eating a species, prompting comparisons to humans and cannibalism.
  • Discussion broadens to pigs, cows, horses, veal, and cultural taboos around which animals are acceptable to eat.
  • People propose frameworks that weigh animal intelligence, suffering, meat yield, and diet needs to minimize cruelty, with some pointing out that meat is not nutritionally necessary for most.

Language and pluralization rabbit-hole

  • Long tangent about the “correct” plural: octopuses (standard English), octopi (popular but etymologically shaky), and octopodes (Greek-derived but rare).
  • Similar arguments about plurals of virus, fish, and other loanwords, plus the general principle that usage ultimately determines “correctness.”
  • Some advocate using just “octopus” as both singular and plural to avoid pedantry.

Octopus biology and cognition

  • Commenters highlight octopus traits: multiple localized “brains” in arms, advanced camouflage, regeneration, short lifespans, and apparent dream-like color changes.
  • Comparison of arm ganglia to distributed processors; pushback that brains aren’t literally CPUs.
  • Noted parallels to alien intelligence and many references to science fiction exploring uplifted octopus civilizations.

Domestication, cooperation, and sociality

  • Speculation on whether octopuses are effectively “domesticating” fish; others reserve “domestication” for multigenerational genetic change, labeling this mutualism instead.
  • References to ants “domesticating” fungi and hemipterans as analogies.
  • Broader point that social attention and cooperative behavior may be more widespread across life (including plants) than often assumed.

Study methods and tools

  • Brief technical discussion of the cited study’s methods: manual video annotation, 3D reconstruction of scenes, and specialized software for multi-view animal tracking.
  • Some wish there were more software projects and jobs focused on non-human behavior and ecology.

Anime is eating the world

Reaction to a16z and VC Framing

  • Many see the piece as a financialization memo, not cultural analysis: “how do we extract more value,” especially via AI and parasocial “companions.”
  • Strong distrust that VC involvement will improve anime; fears of enshittification, over‑monetization, and predatory targeting of socially vulnerable fans.
  • Some note this is consistent with prior pushes into crypto/web3 and “AI for games,” seeing it as hype rebranded.

What Counts as “Anime”?

  • Disagreement over lumping together:
    • Japanese TV/film anime
    • Manga/light novels/visual novels
    • Chinese/Korean webtoons and “anime-styled” games (gacha, Genshin, etc.)
  • One camp insists anime = animation made in Japan; others argue the style and ecosystem now span East Asia and Western co-productions.
  • Thread notes growing fuzziness via outsourcing, cross-border adaptations, and anime‑styled Western or Chinese works.

Quality, Genres, and Trends

  • Split views: some claim a steep decline (too much isekai, gacha tie-ins, generic power fantasies); others list recent standouts (e.g., Vinland Saga, Chainsaw Man, Dungeon Meshi, Frieren, OddTaxi) as evidence of ongoing creativity.
  • Anime is framed as a medium, not a genre: covers children’s shows, pornography, prestige drama, historical pieces, and “healing” shows.
  • There’s concern that emotional “comfort” tropes (loneliness, belonging, trauma healing) dominate and verge on “emotional pornography,” though others argue mass media everywhere recycles themes.

Labor, Economics, and Exploitation

  • Repeated emphasis on underpaid, overworked animators and abusive studio practices, even as global revenues rise.
  • Comparison to games, VFX, and other “cool” jobs where passion enables exploitation; large supply pushes wages down.
  • Some see anime’s relative cheapness and low risk per project as key to its breadth and willingness to try odd concepts.

Anime vs Western Media

  • Several commenters say they shifted to anime because Western film/TV feels risk‑averse, franchise‑bound, visually samey, and overly “safe” or cynical.
  • Counterpoint: Western animation is also diverse, but has less volume and money; anime’s sheer output makes its variety more visible.

AI, Parasociality, and “Anime-as-a-Service”

  • Deep unease with AI companions and “deeper” parasocial monetization; likened to addictive drugs or casinos.
  • Some anticipate regulatory pushback; others argue such products are inevitable and will coexist with genuine benefits for lonely people.