Hacker News, Distilled

AI powered summaries for selected HN discussions.

Page 163 of 524

What is a manifold?

Etymology and Naming Confusion

  • Several comments note that “manifold” in math and car engines share an Old English/Germanic root (“many-fold”), which can mislead learners who anchor on familiar non-math meanings.
  • Some people find etymology helpful for intuition; others say names can be misleading or arbitrary chains of historical choices.

Reception of the Article and Quanta

  • Many praise the article as an accessible history-and-concepts piece rather than a dry definition, highlighting its diagrams and storytelling.
  • Quanta is widely lauded for non-clickbait, technically serious science writing enabled by philanthropic funding and lack of ads/paywalls.
  • A minority find the explanation average or flawed, wanting more on atlases/overlaps and sharper distinctions (e.g., topological vs Riemannian manifolds).

What a Manifold Is (Informal Intuitions and Nuances)

  • Intuitive descriptions: “locally looks flat like ℝⁿ,” “you can put a small disc (open set) around any point,” or “double pendulum configuration space is a torus, not a square.”
  • Clarifications: a sphere needs multiple charts; global latitude–longitude coordinates have discontinuities, motivating the atlas concept.
  • Discussion of spacetime: commenters note that GR spacetime is a 4D pseudo-Riemannian manifold; Minkowski spacetime is the flat special-relativity case.

Pedagogy: Coordinates, Tensors, and Abstraction

  • Long subthread on how physicists define tensors via transformation rules vs mathematicians’ coordinate-free multilinear map definition.
  • Some argue transformation-based teaching is confusing or circular; others say it’s pragmatic and that the shorthand hides a precise rule.
  • Several reminisce about learning relativity/manifolds: better understanding came with more abstract, geometric treatments rather than coordinate-heavy ones.

Applications and Related Concepts

  • Brief mentions of Calabi–Yau manifolds (Ricci-flat, used in string theory), with an explanation of Ricci curvature as “volume change” and note that there is no experimental confirmation.
  • Discussion of “data manifolds” in ML: often treated as an approximate manifold-plus-noise hypothesis; in practice, ReLU networks break smoothness, but intrinsic low-dimensional structure can still be useful.
  • A side question on why cartography rarely uses manifold language: answers cite that manifolds are overkill for simple sphere projections and that cartographic practice predates modern manifold theory.

Some software bloat is OK

Interpreting “Premature Optimization”

  • Many argue the famous Knuth line is widely abused: people hear “don’t optimize” instead of “don’t optimize before profiling / identifying critical paths.”
  • Several commenters stress:
    • Always think about performance while designing.
    • Optimize only once correctness and requirements are stable.
    • Avoid “stupid slow” patterns when a faster alternative is equally clear and simple.
  • Others note that business pressure often ships products after “make it work,” skipping “make it right” and “make it fast” entirely.

Bloat, Complexity, and Maintainability

  • One camp: layers, frameworks, and abstraction can improve modularity, extensibility, and maintainability.
  • Counterpoint: those layers also create “unknowable” systems — too many indirections, dependencies, and frameworks make debugging into archaeology.
  • Several argue bloat and complexity are intertwined: complexity is not treated as a first-class problem, so each “reasonable” local decision leads to globally bloated systems.

Web, Electron, and Frontend Frameworks

  • Strong debate around Electron and web stacks:
    • Pro: Electron/React/etc. ship faster, enable cross-platform UI, and are “good enough” for many CRUD‑style apps and internal tools.
    • Con: large installers, RAM use, sluggish UIs, and battery drain are seen as unjustified for simple apps; many cite Teams, Firefox-as-snap, etc. as horror stories.
  • Some advocate native webviews or Tauri as a more size‑efficient middle ground, while others note memory use is still dominated by browser engines.
  • React and similar frameworks are heavily criticized by some as overcomplex, wasteful, and unnecessary for most sites; they advocate SSR + light JS or DOM‑attached components instead.
  • Others defend Vue/Svelte as distinct from React and argue that once you have real client-side logic, bare DOM APIs are painful.

Context and Lifecycle Matter

  • Several emphasize that “some bloat is OK” only relative to:
    • App lifecycle (quick POC vs. core OS component).
    • Usage pattern (niche scientific visualization vs. casual portal).
    • User base (internal enterprise vs. billions of end users).
  • Bloat is seen as more acceptable when alternatives are clearly worse or development speed is critical; less so when it becomes a permanent dependency or core system tool.

User Experience, Hardware, and Environment

  • Many resent that everyday tools feel slower than decades-old games/OSes despite vastly better hardware.
  • Concerns include: UIs lagging behind keystrokes, battery life (especially for Electron apps), bandwidth and storage assumptions that ignore rural/low‑resource users.
  • Some note that “using all resources” is not inherently good: users may prefer many lightweight apps over a few heavyweight ones.

“Bloat Needs Bloat” and System-Level Effects

  • Commenters point out that:
    • Security, containers, and elaborate error reporting are partly reactions to existing bloat and dependency sprawl.
    • Frameworks that ship their own stacks duplicate what OS/toolkits once shared.
  • There is nostalgia for earlier Android and desktop eras where modest hardware still felt fast; today’s resource gains are perceived as mostly soaked up by layered abstractions.

Philosophical Takes

  • Some argue all bloat is bad, but tradeoffs sometimes justify accepting it knowingly (like tech debt).
  • Others link bloat to Conway’s law and standardization: general-purpose standards and libraries are inevitably heavier but convenient and reusable.
  • There’s a recurring call for a culture that prizes simplicity, negative lines of code, and deep understanding over stacking abstractions “because developer time is expensive.”

Unofficial Microsoft Teams client for Linux

Nature of this client & AI‑authored code

  • Commenters quickly notice the project is mostly AI-assisted (CLAUDE.md, commit messages), sparking concern it may become hard to maintain or abandoned over time.
  • Several point out the client is essentially a wrapper around the Teams web app with extra integrations (tray icon, link handling, PiP, etc.), not a full native reimplementation.
  • One contributor reports adding PiP/video controls was straightforward, suggesting the maintainer is open and the codebase usable.

Why an unofficial Teams client exists

  • Main use case: people who prefer Linux (or BSD) but must use Teams for work, especially in enterprises, government, or Microsoft‑centric environments.
  • Benefits over plain PWA noted: system tray notification badges, respecting the desktop’s default browser for links, multi-account profile handling, and more “native app” feel.
  • Some say it works better and has fewer bugs than the official (now-retired) Linux client; there’s even interest in using it on Windows because the official app is disliked.

Teams on Linux and in browsers

  • Many run Teams successfully as a PWA via Chromium/Edge on Linux, sometimes in “app mode,” with full support for calls and screen sharing (given correct XDG portal setup).
  • Experiences diverge sharply: some report flawless screen sharing in Firefox; others report it completely broken or degraded (low resolution, camera access errors) unless spoofing Chrome.
  • Several argue that using the web client is safer and sufficient; wrapping it adds attack surface.

General sentiment on Teams

  • Large fraction of comments are strongly negative: reports of sluggish UI, high resource usage, confusing chat vs. channel model, flaky notifications and message delivery, weird bugs (wrong windows opening, “just me” chats, auto‑updates mid‑call).
  • Multiple people describe daily friction with formatting, code blocks, copy/paste, markdown, and thread layout, especially for text‑heavy/engineering workflows.
  • Others claim Teams works reliably for them (especially on Windows), is “good enough,” and excels at large meetings and deep integration with the Microsoft 365 stack.

Alternatives, constraints & philosophy

  • Many prefer Slack + Zoom / Meet; some refuse Teams outright and ask clients to switch tools, but others emphasize current job markets and corporate mandates leave little choice.
  • Several lament proprietary, heavy chat/video apps and reminisce about simpler, open protocols (IRC, Jabber); others defend building such unofficial clients as fun, useful personal projects despite vendor risk.

Tell HN: X is opening any tweet link in a webview whether you press it or not

Webview Preloading Change

  • X’s mobile app now opens any tweet’s link inside its own webview and begins loading the target page in the background as soon as you open the tweet, whether or not you tap the link.
  • Some see this as a genuine UX win: pages feel “instant” when tapped, especially for news/blog posts, with the tweet shelving smoothly at the bottom.
  • Others argue preloading is widely avoided for good reasons: it can waste bandwidth, hit paywalled/free-article quotas, and inflate “traffic” metrics to downstream sites.

Metrics, Ads, and “Fake” Traffic

  • Preloading makes it look like X is sending more traffic and improves impression/click numbers for both ads and external links, even when users never actually visit the page.
  • There’s concern this is being used to make X’s relevance and outbound traffic look stronger than it is.
  • Later in the thread, people note Substack’s CEO says that even after correcting for fake views, real traffic from X is substantially up, and an X developer claims a fix for false impressions is shipping.

Security, Privacy, and Webviews

  • Many users dislike in-app webviews in general:
    • They bypass browser ad/content blockers, password managers, and saved sessions.
    • App owners can inject JavaScript, track navigation, and potentially capture credentials.
    • Past examples (e.g., TikTok, Meta) make people assume worst‑case data harvesting.
  • Some note this is structurally similar to an “open redirect” risk: the app is silently causing the user’s device to make requests to arbitrary third-party sites.

General UX and “Dark Pattern” Complaints

  • X is described as increasingly broken for logged-out users and fragile even for logged-in ones (errors, missing threads, quote tweets not loading).
  • The app reportedly treats ad taps as clicks on minimal contact, unlike normal posts, which is seen as intentionally juicing ad CTR.
  • In-app browsers in many apps (X, Instagram, Facebook, Slack/Teams PDF viewers, etc.) are widely criticized as confusing, hard to escape, and worse than real browsers.

Broader Platform & Musk Debates

  • Large portions of the thread spiral into recurring debates:
    • Whether X is now a “Nazi bar” vs. a uniquely “free speech” platform.
    • Pre‑ vs. post‑Musk censorship (Twitter Files, government jawboning, bans of left vs right).
    • Whether X is trying to become a WeChat‑style “everything app” with payments and mini‑apps.
  • Many say they’ve left X over toxicity, ragebait, and engagement farming; others stay for AI/ML communities, real‑time info, and lack of equally effective alternatives (Bluesky, Mastodon, Threads, RSS all mentioned, each with tradeoffs).

Why AC is cheap, but AC repair is a luxury

High HVAC and Home Repair Costs

  • Many see US HVAC and trades pricing as extreme: mini-splits or heat pumps quoted at $10k–$25k vs hardware costs of a few hundred to a couple thousand elsewhere.
  • Several stories of large quotes for simple work (moving an AC, fixing a leak) vs small actual labor/material cost, prompting accusations of “fleecing” and “go away” pricing for small residential jobs.
  • Others counter that margins aren’t as huge as they look once you include trucks, fuel, insurance, office staff, time in traffic, callbacks, and compliance.

Regional and Regulatory Differences

  • Big price gaps reported between US and Europe/Australia/Asia for similar equipment and installs; some attribute this to:
    • Market positioning of heat pumps as a luxury product in the US.
    • Long licensing paths, mandatory permits, and liability/insurance requirements.
    • Refrigerant rules, taxes, and recent shortages that make refills very expensive.
    • Tariffs and “safety-first” building codes raising installation costs.
  • Others argue regulation costs are real but far from the main driver; housing, healthcare, and wage structures matter more.

Trades Shifting Toward Wealthy Clients

  • Common theme: trades increasingly avoid small, one-off jobs because overhead (quoting, driving, billing, reviews) dominates revenue.
  • Preference for big construction projects or high-margin residential installs; minimums like “won’t get out of bed for less than $1,000” are reported.
  • Some blame private-equity rollups and standardized, non-negotiable pricing.

DIY as Coping Strategy

  • Many describe large savings from DIY HVAC, solar, and auto repairs compared to quotes.
  • Others stress hidden complexity and risk: electrical work, ladders, condensation/mold, flammable or high‑GWP refrigerants, and insurance gaps.
  • Online tutorials make DIY more accessible, but time, tools, and safety still limit who can realistically do this.

Economic Explanations and Article Critiques

  • Baumol’s cost disease is widely discussed; several note it describes real shifts but isn’t a “disease” so much as a side effect of progress.
  • Disagreement over Jevons paradox: some say the article misstates it (confusing cheaper coal with more efficient steam engines).
  • Pushback on claims that welfare and consumer protection are primary cost drivers; critics see that as ideological and note existing extreme poverty and wage stagnation.
  • Skepticism toward the article’s AI optimism and analogies (e.g., drywall vs flatscreen TV, radiology automation, affordable car leases).

My Truck Desk

Overall reaction to the essay

  • Many readers found the piece moving, beautifully written, and “inspiring” in its portrayal of dedication to art under constraint.
  • Several appreciated how it captures “feral creatives” making work in rough industrial contexts, doing hard physical labor while nurturing a parallel creative life.
  • A recurring line for people was the idea that you must “make your own conditions” for art, even when money and time are tight.

Office vs. field culture and the “lone wolf”

  • One thread debated whether the author could have secured an empty office cubicle by befriending staff, instead of writing in his truck.
  • Others pushed back, citing class divisions between office and “dirty” field workers, and norms where contractors are implicitly or explicitly forbidden from hanging around office space.
  • Some argued that choosing to be “the weirdo” or lone wolf can protect precious break time from small talk; others saw this as self-isolating and possibly counterproductive for long-term community or career.
  • A few former contractors said office/field separation is so strong that the essay may be soft-pedaling how unwelcome workers actually are inside the building.

Neurodiversity, pleasantries, and community

  • There was a split between people who find workplace pleasantries nourishing and community-building, and those for whom they are exhausting or anxiety-inducing.
  • Commenters mentioned social anxiety, autism, and ADHD as reasons some people fiercely guard their limited unscheduled minutes.
  • Another subthread noted that putting too much weight on workplace social life may reflect the erosion of other “third places” for community.

Using scraps of time for creative work

  • Many were impressed (and sometimes jealous) of the ability to context-switch into deep work in 10–15 minute chunks.
  • Several shared strategies: pre-planning the next small task, “parking facing downhill” (stopping somewhere easy to restart), journaling or brainstorming when you can’t do the core craft, and leveraging subconscious processing between sessions.
  • Others said this becomes a learned skill, often forced by parenting or demanding day jobs; progress is slower but accumulates.
  • A side discussion covered ADHD: some claimed it hinders rapid productive focus shifts, others argued it can enable high-performance in high-stress, multi-threaded situations.

Mobile workspaces and vehicle desks

  • Readers connected the “truck desk” to real-world practices: foremen using trucks as mobile offices, steering-wheel desks, purpose-built console work surfaces in modern pickups, and improvised setups in vans.
  • Several reported being surprisingly productive in cars, vans, airports, or planes, crediting constraint, ambient noise, and lack of distractions.
  • Some described augmenting vehicle work with portable USB-C monitors or spatial computing headsets, framing it as a kind of lived cyberpunk future.

When stick figures fought

Nostalgia for Xiao Xiao, StickDeath, and the Flash Era

  • Many recall Xiao Xiao, StickDeath, Madness Combat, and sites like Stickpage, SFDT, Newgrounds, and Albino Blacksheep as formative early-internet experiences.
  • People remember LAN parties, school computer labs, and shared hard drives full of .swf and .avi files, often alongside other early viral videos.
  • Several note specific spin‑offs or contemporaries: Ninjai, Killer Bean, Animator vs. Animation, and “choose your own death” stick figure Flash shorts.

Communities, Tools, and Learning to Code

  • SFDT, DeviantArt “flashers,” Pivot Animator, Flipnote on Nintendo DS, and small forums are remembered as tight-knit, creative communities that felt very different from today’s large platforms.
  • Many say Flash and ActionScript were their gateway to programming, game dev, and even careers in tech; some later moved to TypeScript, Haxe/OpenFL, Unity, or modern engines.
  • Pivot Animator, Toribash, and newer games like YOMI Hustle, Stick It to the Stickman, and One Finger Death Punch are mentioned as spiritual successors to stick-fight animation and gameplay.

Flash UX, Demise, and What Was Lost

  • Strong praise for Flash as a uniquely good visual authoring tool with an easy creative ramp for non‑technical people.
  • Counterpoints emphasize Flash’s poor performance, memory leaks, security issues, and especially its terrible web-browsing experience and ad abuse.
  • Debate over whether Flash “had to die”: some argue the plugin was a security disaster; others say the creative environment could have been preserved separately from web video.
  • Some blame mobile (especially smartphones) and others blame corporate shifts and subscription pricing for the loss of that ecosystem.

Preservation, Successors, and Access Today

  • People highlight Ruffle and large archival efforts as ways to experience original vector-based and interactive Flash content.
  • There’s a sense that today’s internet favors a few giant platforms, making it harder to stumble into weird, niche, creative communities—though group chats, indie tools (e.g., Godot), and Source Filmmaker are seen as partial heirs.

Nike, IP, and Fairness

  • Discussion over the Nike ad dispute focuses on power imbalance: morally many feel the original creator should have been compensated, but others argue the law around simple stick figures and prior art made that unlikely.

You can't cURL a Border

Complex cross‑border rules and taxation

  • Commenters describe exponential complexity when multiple countries’ tax, visa, and residency rules interact (citizenship in A, residence/work in B, property in A, travel to C, etc.).
  • Double taxation treaties usually prevent double income tax but not duplicate paperwork or taxes on property/wealth; some report being taxed twice on possessions when moving.
  • US worldwide taxation is singled out as uniquely burdensome: filing is hard even when no extra tax is due, and expats must still handle huge, complex returns.
  • People with weaker passports or non‑EU citizenship describe constant bureaucracy, day‑counting spreadsheets, and incompatible tax authorities.

The residency‑tracking app and how to build it

  • Many are impressed that the author turned this rule maze into a working app at all; several say the real difficulty is modeling nuanced rules and edge cases.
  • Discussion of implementation focuses on heavy use of unit tests, sometimes DSLs or clear rule functions, and skepticism about LLMs reliably encoding math‑like legal rules.
  • Some argue AI can handle “boring boilerplate”; others have found LLMs unreliable for precise calculations and prefer hand‑written logic plus tests.
  • A few note the app appears to require users to encode their own rule “goals” rather than ship with authoritative law baked in.

Visas, citizenship, and bureaucratic anecdotes

  • The UK’s citizenship rule requiring presence on the exact date 5 years earlier is widely mocked as arbitrary; some say it’s actually based on when the form is received, adding randomness.
  • Several note the UK government’s border data is incomplete and inaccurate, yet is still used to make serious benefit and immigration decisions.
  • Examples from Norway, Japan, and other EU states illustrate confusing requirements, limbo periods, odd document dances, and long delays; sometimes companies or lawyers can “unstick” cases.

Rules vs. enforcement: strict, fuzzy, and “vibes‑based”

  • One camp says systems are too fuzzy to treat like code: most officials can’t or won’t apply rules with second‑level precision, and minor mistakes may slide.
  • Others counter with stories of single‑day overstays (US, Schengen) causing visa refusals for years; they argue you must avoid going near formal limits.
  • There’s consensus that enforcement is partly arbitrary: “vibes” and discretion matter, but solid documentation and being clearly within thresholds are valuable if disputes arise.

Digital nomads, EU freedom, and politics

  • Many EU citizens only now recognize how exceptional Schengen freedom is, compared to outsiders dealing with 90/180 rules and visas.
  • Some older Europeans recall pre‑Schengen borders as intimidating and corrupt, and fear a rollback if far‑right anti‑immigration politics keep rising.
  • Digital nomads are debated: some say most are technically working illegally and distorting housing markets; others argue they inject foreign money, pay local consumption taxes, and are effectively tolerated or even courted via “nomad visas.”

Legality, morality, and “irregular” paths

  • Several admit relatives or acquaintances overstayed tourist visas in Europe, then later regularized and became citizens; law‑abiding peers feel punished for following the rules.
  • Some argue border laws are more like parking rules (administrative, not moral); others insist uncontrolled migration can strain societies and that borders define states.
  • There’s discussion of guest‑worker schemes versus permanent immigration, and whether current systems deliberately favor low‑wage irregular labor over high‑skilled legal migrants.

Data, security, and local‑only design

  • The app’s “local only” stance is praised for avoiding server subpoenas, but others warn that border officials in some countries can demand access to personal devices; client‑side storage doesn’t eliminate user risk.
  • A few say they’d rather memorize a password to remote encrypted data than carry a detailed immigration log across borders.

Miscellaneous reactions

  • Some see the article as content marketing with possibly dramatized pain points; others say the described spreadsheets and anxiety mirror their reality.
  • Strong‑passport holders who only take short holidays express surprise at the complexity—and note that most casual travelers never encounter these issues.
  • There’s discussion of why many countries require months of passport validity (risk mitigation for emergencies and deportation), and light commentary on the title pun (“you can’t cURL a border”) and “curl” becoming shorthand for “hit an API.”

Things you can do with diodes

Semiconductor behavior and notation

  • Commenters clarify that the p–n junction’s depletion region having “positive on n, negative on p” is unintuitive but independent of the historical sign choice for electron charge: the region is charged opposite to the majority carriers that are missing.

Expanded analog & RF applications

  • Many additional uses beyond the article:
    • Frequency mixers and ring modulators for heterodyning and audio effects.
    • Varactor diodes as voltage-controlled capacitors in RF filters and tuners.
    • PIN diodes as RF switches above ~1 GHz.
    • Step-recovery diodes for generating extremely sharp pulses and driving high-speed switches.
    • Voltage doublers/multipliers for high-voltage generation.
    • Baker clamps and flyback diodes for faster transistor switching and inductive load protection.
    • Rectennas (RF power harvesting).

Audio, music, and synthesis

  • Diode ring/bridge gain cells in classic compressors; diode ladders and Sallen–Key variants as voltage-controlled filters in vintage synths.
  • Diode-based wave shaping: triangle-to-sine conversion in oscillators, ring modulation, diode clippers and “octave up” circuits, square-law detectors.
  • Detailed discussion of guitar/distortion pedals using antiparallel diodes (including LEDs, germanium, etc.) and the difficulty of accurately modeling their nonlinear behavior.

Power, sensing, and measurement

  • Uses as temperature sensors, quantum/thermal noise and random-number sources, radiation detectors (including in radiotherapy and accelerators), and high-speed samplers.
  • Strings of diodes as simple voltage droppers or crude regulators when only a fixed ~0.7 V step is needed.
  • Diodes in asymmetric RC networks for slow power-up/fast power-down timing (e.g., reset and mute circuits).

Digital logic, ROM, and ADCs

  • Diode logic’s main drawback (no gain) can be mitigated by transistor followers; this leads into RTL, TTL, CMOS logic families.
  • Historical note: diode matrices plus a smaller number of vacuum tubes enabled cheaper, more reliable early computers and boot ROMs.
  • Examples of diode-based ROM (graphics bitmaps) and a simple diode-based ADC (series diodes tapped as comparators).

Solar heating with diodes

  • A claim that diode strings heat more than resistors from the same PV panel sparks debate.
  • Consensus explanation: diodes act as a crude maximum-power-point tracker by better matching panel impedance, not by creating “extra” energy.

Curriculum, accuracy, and criticism

  • Several push back on the article’s claim that diodes are “neglected,” citing mainstream textbooks that treat them extensively.
  • Others highlight technical inaccuracies, especially the linear-looking I–V graph and description of forward conduction, arguing it misrepresents the exponential diode equation.
  • Some see the article as a useful ham-radio-style crash course; others find the pedagogy and rigor lacking.

Low-voltage design and “ideal” diodes

  • At low supply voltages, the ~0.6 V drop is problematic; suggestions include Schottky diodes, MOSFET-based “ideal diode” ICs, and op-amp-based precision rectifiers.

Guideline has been acquired by Gusto

Acquisition communication & phishing-like concerns

  • Several commenters describe the initial “Accrue401k” email as indistinguishable from a targeted phishing attempt: new domain, unfamiliar brand, login request, and no prior mention of Accrue.
  • Some people had earlier, clearer communications about the Guideline–Gusto deal, especially where Gusto was already the payroll provider; others say this email was the first they’d heard of any acquisition.
  • Confusion is heightened because the FAQ was first seen on the new Accrue-branded site; users had to hunt to find the same info on the familiar Guideline domain.

Branding, UX, and security norms in finance

  • Commenters generalize this to a broader pattern: 401k, mortgage, and benefits providers constantly change servicers and web domains with weak communication, effectively “training” users to ignore phishing best practices.
  • Jokes about rebrands and made‑up SaaS names underscore the absurdity of expecting users to trust random new financial URLs.

What happens to Guideline accounts

  • Rough community understanding:
    • Customers that used both Gusto payroll and Guideline were migrated into Gusto’s own 401k offering.
    • Remaining Guideline accounts are being served under the new Accrue401k branding, with essentially the same dashboard.
  • Some suspect the timing of the public messaging may be related to a corporate‑espionage lawsuit referenced in the thread, though this is speculative.

Rollovers vs leaving money in old 401(k)s

  • One camp: always roll old plans to an IRA or current employer plan for simplicity and control; the rollover process is described as annoyingly archaic but manageable.
  • Counterpoints:
    • Old plans sometimes have better or cheaper institutional funds than retail IRAs.
    • Some providers charge exit or maintenance fees, or make rollovers extremely hard.
    • Keeping funds in a 401k (vs IRA) can preserve better creditor/bankruptcy protection and flexibility for backdoor Roth strategies.

Backdoor Roth, solo 401k, and tax mechanics

  • Long subthread on backdoor Roth IRA rules, the pro‑rata rule, and when existing traditional IRAs make the maneuver unattractive.
  • Suggestions include using solo 401ks to park pre‑tax assets and preserve Roth options, but others push back on the complexity and compliance burden.
  • Disagreement over how valuable backdoor Roths really are versus straightforward pre‑tax saving, given uncertain future tax rates.

Experiences with Gusto, Guideline, and alternatives

  • Mixed views on Gusto: some report years of trouble‑free small‑business payroll; others recount repeated payroll errors, offshore or LLM‑generated support, and poor responsiveness.
  • Multiple negative anecdotes about Guideline:
    • Alleged FSA/HSA handling that contradicts IRS/ERISA guidance (fiduciary‑duty concerns, though not independently verified in the thread).
    • A bankruptcy case where Guideline reportedly ignored a trustee’s freeze request until forced by court order.
  • Several commenters prefer Fidelity/Vanguard for HSA/401k when feasible, but note these big providers often price out very small employers, pushing startups toward vendors like Gusto/Guideline despite higher fees or weaker tooling.
  • Some small‑company admins share fee comparisons showing Guideline can be cheaper for employees than Fidelity at small scale, and highlight features like profit‑sharing up to the higher 401k annual limits.

App Store web has exposed all its source code

Accidental exposure and quick takedown

  • The new web App Store briefly shipped production sourcemaps, effectively exposing its full frontend source.
  • Commenters report Apple removed the sourcemaps within hours; GitHub repos mirroring the code were DMCA’d, including the entire fork network.
  • Mirrors exist in software archives, but several people who grabbed it say the code is “not very interesting.”

Sourcemaps: purpose, learning, and risk

  • One camp argues sourcemaps “should be enabled” in production to aid learning and introspection, echoing the old “view source” culture.
  • Others insist sourcemaps are for debugging: mapping minified/transpiled bundles back to real source for usable stack traces, especially when shipping small bundles.
  • Concerns are raised that sourcemaps can reveal business logic, shared server/client code, or vulnerabilities; others counter that motivated reverse‑engineers can already de-minify code and that exposing source doesn’t make it “open source.”
  • Some say sourcemaps in prod are fine unless you specifically need code obfuscation.

Tech stack: Svelte and JS‑driven UIs

  • People are surprised and excited that the App Store is built with Svelte; Apple Music and Podcasts’ web versions are also reported to use Svelte, with earlier iterations on Ember.
  • Broader discussion notes heavy use of JavaScript UI stacks across platforms (React Native in parts of Windows 11 Start menu, GNOME JS, KDE/QML, React in parts of macOS Settings).
  • Opinions split: some like HTML/CSS/JS as the most familiar, well-documented cross‑platform GUI; others criticize web engines as bloated, layout‑heavy, and ill‑suited compared to native UI frameworks.

Performance and SPA UX debates

  • Several users find apps.apple.com “slow” with 1–2s navigation delays; others say it’s snappy even on old hardware.
  • Critique of SPA patterns: routers often wait for all data before showing the new route, causing perceived slowness.
  • Big subthread on skeleton loaders vs spinners/blank pages:
    • Pro‑skeleton: reduce layout shifts, give immediate feedback, allow partial interaction as data streams in.
    • Anti‑skeleton: feel deceptive, add distraction, can break scrolling, and mask sloppy layout design; some prefer honest blank states or simple spinners.

Code quality and interest

  • Some expected Apple‑grade polish but describe the App Store Connect backend/frontend as surprisingly poor and incoherent compared to historically admired Apple code.
  • Others note parts of the exposed codebase looked clean, with systematic use of intents and dependency injection.

Legal / DMCA discussion

  • Debate over whether DMCA takedown is appropriate when the code was publicly served:
    • One side calls it inappropriate or “entrapment.”
    • Another points out that public availability doesn’t grant redistribution rights; copyright still applies, and DMCA is the standard mechanism.

AI's Dial-Up Era

Infrastructure & Bubble Comparisons

  • Several commenters contest the “railroad” and “dot‑com fiber” analogies: railroads and fiber had very long-lived physical value, whereas GPUs depreciate in a few years and data centers age quickly.
  • Others counter that a lot of current spend is on durable assets: buildings, power and cooling systems, undersea cables, and possibly new power plants. Even if the GPU layer is scrapped, power and connectivity could remain useful.
  • A competing analogy is “canal mania”: huge investment in an ultimately transitional technology, soon bypassed by something more native (specialized AI hardware instead of GPUs).

Economics, Depreciation & Bubble Risk

  • Strong concern that this bubble is worse than past ones because the main asset (GPUs) wears out or becomes obsolete before many players can reach profitability.
  • Discussion of quantitative “bubble gauges” (capex/revenue, GDP share, multiples, funding quality) and macro indicators like the Buffett indicator; some think AI is still demand-led, others see classic overinvestment and circular funding.
  • Some argue we’re replaying a gold‑rush dynamic: the tech can be real and valuable while the financial layer is wildly overextended.

Capabilities, Usefulness & Limits of Current AI

  • Experiences diverge sharply: some find LLMs transformative for debugging, refactoring, documentation, research, and even complex planning (e.g., solar installations); others report frequent errors and hallucinations that nullify any time savings.
  • Skeptics argue current LLM architectures are near their useful ceiling and suffer from inherent probabilistic behavior; they doubt this path leads to AGI without a fundamentally new approach.
  • Supporters respond that diminishing returns don’t mean saturation, and that breakthroughs (new architectures, training schemes, linear attention, better feedback loops) could reset the curve.

Centralization vs Personal/Local AI

  • Many see today as a “mainframe era”: a few hyperscalers rent access to giant models; most users act as thin clients despite having powerful local hardware.
  • Others point to growing local‑model ecosystems (Ollama, LM Studio, on‑device models from Apple/Google) but note technical and usability barriers for mainstream users.
  • Debate over whether true “personal computing for AI” will ever dominate, or whether economics and subscriptions will keep most capability centralized.

Labour, Society & Ethics

  • Concerns that AI, like physical automation (“the claw” garbage trucks), will funge labor into capital, with immediate winners among owners and little safety net for displaced workers.
  • Some argue AI will eliminate specific tasks, not whole professions, and will roll through jobs unevenly; others predict permanent job loss in areas like CRUD development and grading.
  • Several comments lament massive AI capex versus alternative uses, especially climate mitigation, and criticize training on scraped web data as unsustainable and exploitative.

On the Dial‑Up Analogy & Historical Parallels

  • Some think the “dial‑up” framing presumes the conclusion: it implies today’s janky, expensive AI is an early stage of an inevitable revolution, which is not yet proven.
  • People recall that 1990s internet optimism was already very high; others remember skepticism. There’s debate over how obvious the internet’s eventual impact really was.
  • Alternative frames: this could be AI’s “VR/fusion/FTL” era (big promises that stall), or simply another hype cycle on the Gartner curve whose long‑term slope is still unclear.

The Mack Super Pumper was a locomotive engined fire fighter (2018)

Napier Deltic and Exotic Engine Designs

  • Many comments focus on the Napier Deltic engine used in the Super Pumper: opposed‑piston, triangular layout, three crankshafts (two in one direction, one opposite), requiring forced induction and producing a distinctive whine.
  • People connect it to WW2 torpedo boats, British “Deltic” locomotives, and broader Napier experimentation (Sabre, Nomad, turbo‑compound concepts).
  • There’s enthusiasm for complex mechanical engines vs today’s “magnets and coils,” even among commenters who still support electrification and renewables.
  • Other unusual engine layouts (radial, Wankel, axial, etc.) are mentioned as part of a now largely historical design arms race.

Firefighting Megamachines and What Replaced Them

  • The Mack Super Pumper is compared to modern systems: FDNY has a new “Super Pumper” with high output but in a more conventional package.
  • Some argue its role can now be performed by multiple standard pumpers (e.g., four engines at ~2,200 gpm each), offering flexibility and redundancy.
  • Chicago’s “turret wagons” and industrial high‑flow units (e.g., “Big John”) are cited as conceptual cousins.
  • At the extreme end, commenters note jet‑engine based oil‑well fire rigs (e.g., “Big Wind”) and even historical nuclear options.
  • Better building fire suppression, flame‑retardant materials, and modern codes are cited as reasons fewer cities need such singular mega‑apparatus.

Hydraulics, Pumps, and Water Supply Constraints

  • Several comments unpack why higher pressure often means lower flow: power is roughly pressure × flow; for fixed power, increasing pressure reduces volumetric flow.
  • Discussion on hydrant supply vs static sources: residual pressure must be kept above a threshold (e.g., ~20 psi) to avoid damaging mains, hose, and pumps.
  • The “7,000 ft of hose” anecdote is analyzed: likely spread across multiple hydrants and lines; long hose runs incur major friction loss, requiring relay pumps or assist valves.
  • Space‑shuttle and Saturn V turbopumps are invoked to illustrate how extreme pump power can become.
  • Pump selection for hot, corrosive, or unusual fluids is said to be highly specialized, with buyers relying on datasheets (temperature/viscosity ranges) and niche manufacturers.

Torque, Power, and Design Priorities

  • Debate over torque vs horsepower: commenters note they’re related via RPM, but practical design cares about where in the rev range torque is available and what gearboxes can survive.
  • Applications like marine, rail, and pumping prefer high torque at lower RPM for durability and efficiency, rather than peaky high‑RPM power.
  • Electric vehicles (e.g., high‑power sedans) are contrasted with the Super Pumper: similar headline horsepower but limited duration at peak due to battery voltage sag.

Fireground Operations and System Thinking

  • Multiple firefighters describe rural vs urban tactics: engines arriving with limited tank water, dropping large supply lines, tenders shuttling from ponds/tanks, and the need to park “close but not too close” to avoid losing apparatus to heat.
  • In many modern incidents, pump capacity exceeds municipal water availability, making the network the bottleneck.
  • One commenter uses the “first engine / second engine” model as an analogy for incident response in tech: later arrivals should stabilize infrastructure, coordinate, and communicate rather than immediately “grab a hose.” A detailed bullet list describes the value of an incident commander role.

Technology Transitions and Nostalgia

  • Several comments express nostalgia for visibly complex machines (steam engines, piston aircraft, old fire apparatus) compared to today’s cleaner, more efficient but less “romantic” turbines and electronics.
  • This is linked to the broader theme that as systems become more optimized and software‑driven, they often become less tactile and visually impressive, even while performing better.

Procurement, Regulation, and Industry Structure

  • A side thread notes that modern fire apparatus procurement is slower and more complex than in the 1960s, citing today’s layers of certification, regulation, and market consolidation.
  • Barriers to entry, safety requirements, and risk‑averse large buyers are mentioned as reasons a few manufacturers dominate, inviting discussion of private‑equity‑driven consolidation and potential antitrust concerns.

Miscellaneous Technical and Safety Notes

  • Lithium‑ion battery fires are discussed; one firefighter characterizes them as manageable but slow to extinguish fully, with the main tactic being prolonged cooling.
  • There are brief notes on seawater‑rated pumps (materials for corrosion resistance), the risks of agricultural fires (e.g., wheat harvest machinery), and design lineage from marine diesels to locomotive engines.

Building a 2.5kWh battery from disposable vapes to power my workshop [video]

Disposable vapes, regulation, and visible waste

  • Many commenters are appalled that “disposable” vapes exist at all, noting they’re now ubiquitous litter, effectively “e‑waste packages” scattered like cigarette butts.
  • Legal status varies: banned or restricted in some countries (Australia, UK, some EU states), but enforcement is weak and black markets are common.
  • People are disturbed that devices contain not just batteries but also surprisingly capable microcontrollers, all treated as trash.

Safety of DIY vape‑cell battery packs

  • Multiple comments warn strongly against building large NMC packs at home, calling it a serious fire risk and recommending only outdoor, separated structures if attempted at all.
  • Suggested protections: high‑quality BMS with current limits and thermal probes, thermal fuses, spacing and airflow between cells, strict QA (capacity, internal resistance, self‑discharge), welding instead of soldering.
  • Several note that once thermal runaway starts, there’s little you can do except isolate the pack; specialized containers and dedicated sheds are standard in professional setups.
  • One detailed critique argues the video’s pack layout, wiring, imbalance between parallel groups, and lack of proper transfer switching are all unsafe; concludes that commercial packs are usually safer and more economical.

Battery chemistries and future directions

  • Strong preference for LiFePO₄ (LFP) over NMC for home storage: less prone to combustion, “good enough” energy density.
  • Some believe large NMC packs will eventually be pushed outside buildings by regulation, or replaced over time by LFP, sodium‑ion, and possibly solid‑state.
  • Debate on whether solid‑state can ever fully replace liquid‑electrolyte chemistries, especially where very high power (current) is needed.
  • Lead‑acid is discussed as still useful for specific high‑current, stationary roles, with good recyclability but poor energy density.

Broader e‑waste and “disposable” culture

  • Disposable vapes are seen as a symptom of a wider e‑waste problem: working but “obsolete” PCs, forced OS upgrades, and sealed‑battery devices.
  • Some argue that reusing old hardware can be environmentally better than building new “efficient” systems; others counter that datacenter‑class hardware is far more energy‑efficient, and labor and space costs dominate.
  • There’s skepticism that old desktops could economically replace modern data centers at scale.

Policy ideas: regulation, deposits, and design

  • Several point to EU‑style WEEE rules that require recyclability, but note enforcement is weak and “recyclable” often doesn’t mean “recycled.”
  • Proposed fixes:
    • Deposit schemes for vapes and small electronics, modeled on bottle/can returns, to virtually eliminate litter.
    • Design standards: standardized vape bases, user‑replaceable cells (AA/AAA/18650‑style), and mandatory take‑back obligations for manufacturers.
  • Others suggest disposable products in general should face much stricter regulation.

Hacker culture and scavenging

  • There’s tension between “never ever do this” safety warnings and encouragement for hackers to experiment carefully and learn from projects like the video.
  • Some enjoy the idea of harvesting microcontrollers from vapes and other devices for post‑collapse or censorship‑resistant systems, referencing projects like Collapse OS and fictional “FreeNet”‑style networks.

</> Htmx – The Fetch()ening

Versioning, Stability, and “htmx 4.0” Naming

  • Strong approval for the promise that htmx 1/2 will be supported indefinitely; seen as rare in a churn-heavy ecosystem.
  • Mixed reactions to skipping 3.0 and jumping to 4.0 to remain “technically correct”: many find it funny, others think it may cause needless confusion (PHP 6 analogy); some say a simple mea culpa 3.0 would be clearer.
  • A few argue that batching many breaking changes into one major release is the wrong way to achieve stability, comparing it to Python 3; they advocate Django-style gradual deprecations and more frequent majors.
  • At least one commenter says this big-bang major bump makes them avoid adopting htmx for new work, failing their “stability test”. Others are happy as long as previous versions remain usable.

Core Philosophy: HTML-First, Not JSON

  • Complaint: htmx doesn’t auto-parse JSON in hx-on::after-request callbacks.
  • Response: this is by design—htmx is meant for HTML hypermedia responses, not JSON APIs. Many emphasize that this HTML-centricity is a core design choice, not an omission.
  • 4.0 will expose the full request/response/swap pipeline and allow custom fetch implementations per-trigger, which should make JSON or other custom flows possible without changing the HTML-first philosophy.

fetch(), Streams, and Morphing

  • Move from XMLHttpRequest to fetch() is welcomed; it simplifies internals and enables readable streams for SSE/streaming partial updates.
  • 4.0 will integrate morph-based swaps (inner/outer) into core, made feasible by the fetch refactor; some question whether this belongs in core vs extension.
  • Example patterns show per-request fetch overrides via hx-on:htmx:config:request, enabling mocking or custom transport without global monkey-patching.

htmx vs Datastar: Overlap and Tradeoffs

  • Datastar is repeatedly mentioned as a more general, plugin-driven alternative with built-in SSE, signals, DOM morphing, and smaller core; some describe htmx 4 as “Datastar-lite”.
  • Pro/datastar skeptics worry about non-FOSS/pro features and potential rugpulls; defenders point to nonprofit ownership, MIT core, and pluggable architecture.
  • Technical debate:
    • Pro-htmx side: htmx’s constrained request/response model and HTML fragments are simpler for typical CRUD apps, easier to reason about and debug, and integrate well with URL/history semantics.
    • Pro-Datastar side: a more generalized, event/signal/stream-driven model handles both simple and complex use cases; they argue htmx’s attribute surface is actually larger and less composable.
  • Significant disagreement over URL/history: htmx users see “URL as state” and history updates as central to hypermedia; Datastar’s authors reportedly treat history-pushing as an antipattern, which several commenters strongly reject.

Attribute Inheritance and Naming Bikeshedding

  • 4.0 flips inheritance to opt-in; prior implicit inheritance caused confusion and support load.
  • Long subthread bikesheds the hx-inherited name; alternatives like inherit, inheritable, propagate, and cascade are suggested, with various jokes attached.

General Reception

  • Many praise the essay’s clarity and the direction of htmx 4.0, especially open request cycle and streaming.
  • Others express concern that the library is growing more complex, drifting away from its original minimalism.

Wikipedia row erupts as Jimmy Wales intervenes on 'Gaza genocide' page

Wikipedia’s Neutrality and Governance

  • Several commenters say the talk-page dispute shows Wikipedia’s normal consensus process working: Wales voiced a view; editors are debating it against policy and prior consensus.
  • Others argue Wales’ “Statement from Jimbo Wales” is effectively an exercise of power, backed by an NPOV working group and media interviews, so not “just another comment.”
  • It’s noted that he is not an administrator and cannot lock pages; many editors appear willing to push back and demand policy-based arguments.

Content and Balance of the “Gaza genocide” Article

  • One side claims the article reflects the near-consensus of genocide scholars and major human-rights organizations, which now label Israel’s actions in Gaza as genocide; by Wikipedia standards, siding with such sources is normal, as with the Holocaust or pseudoscience pages.
  • Critics call the article an extreme, one-sided “rant”:
    • They say it presents only one viewpoint, minimizes or omits Hamas’ October 7 atrocities and potential Palestinian genocidal acts, and closely tracks Hamas narratives on casualties and hospitals.
    • They highlight asymmetry with articles like “Allegations of genocide in the October 7 attacks,” which use more cautious titles and extensively air doubts and counterarguments.
  • There is disagreement about whether neutrality requires representing denial or minimization of genocide claims at all, especially while events are ongoing.

Neutral Tone vs. Substantive Claims

  • Some readers think Wales only asked for a more neutral tone; others stress he is pushing to remove or dilute the assertion that Israel is committing genocide, which they see as contradicting sourcing policy by elevating government denials to parity with academic work.
  • Commenters argue that “both sides” is not always neutral when one side lacks high-quality sources, drawing analogies to vaccine conspiracies and election denial.

Definitions, Logic, and AI Proposals

  • A thread debates whether concepts like “genocide” can be cleanly defined by rules: one camp wants rule-based, model-generated, fully symmetric treatment of claims; opponents say social constructs depend on human consensus, not pure logic.
  • LLMs are criticized as non-deterministic, easily manipulated, and the opposite of Wikipedia’s curated model.

External Pressure and Free Speech

  • Commenters discuss a US congressional inquiry into alleged anti-Israel bias on Wikipedia, including requests for editor-identifying data, seeing it as chilling and inconsistent with professed US free-speech ideals.
  • Broader worries surface about governments, propaganda, and biased casualty reporting in wartime.

Meta-Observations on Wikipedia

  • Some liken contentious topic areas to a game dominated by zealots and rule-obsessives, which can drive away subject-matter experts despite still producing a better resource than traditional encyclopedias.
  • Others note Wikipedia is structurally ill-suited to fast-moving conflicts and is “almost built” to avoid being the platform of record while events are unfolding.

The Case That A.I. Is Thinking

Access and meta-notes

  • Many comments focus on getting around the New Yorker paywall (archive links, Libby, Lynx).
  • Some note the author is a long-time HN participant, which colors how the piece is received but doesn’t change the arguments.

What does “thinking” even mean?

  • A recurring theme is that “thinking,” “intelligence,” “consciousness,” “sentience,” etc. are ill‑defined; people admit we lack agreed, testable definitions.
  • Several argue that debates quickly become semantic: like Dijkstra’s “can submarines swim?” – if you define “thinking” to require human-style consciousness, computers lose by definition.
  • Others say the term should track observable capabilities: if something solves problems, reasons, and adapts, calling it “thinking” is meaningful enough.

Arguments that LLMs are not thinking

  • Strong camp claiming LLMs are glorified autocomplete: probabilistic next‑token machines, closer to a huge if/else tree or database than a mind.
  • Points cited:
    • No agency or intrinsic goals; they never act without being prompted.
    • No persistent self-modification post‑training (no real learning, just context).
    • Hallucinations, fragile logic, and basic failures (classic “how many letters in ‘strawberry’”‑type tasks).
    • Same transformer trick works poorly in other domains (video, physics), suggesting the magic is in human language, not general cognition.
  • Some liken them to “stochastic parrots” or mirrors: powerful tools reflecting human text and biases, not genuine thinkers.

Arguments that LLMs are thinking (in some sense)

  • Others point to chain-of-thought traces, multi-step debugging, writing and running tests, revising assumptions, and solving novel coding/math tasks as evidence of genuine reasoning.
  • Emphasis that we didn’t “program the model,” we programmed the learning process; the internal circuits are discovered, not designed, and largely opaque even to creators.
  • Intelligence is framed by some as substrate‑independent computation; if a Turing‑complete system can emulate a human’s behavior arbitrarily well, calling it “thinking” and “sentient” is seen as reasonable.
  • Some suggest LLMs may approximate a subsystem of human cognition (pattern recognition, compression, concept mapping), without a full self-model or sustained goals.

Consciousness, sentience, and qualia

  • Long side threads on the “hard problem of consciousness,” qualia, identity of copies, brain simulations, and panpsychism.
  • Several note we cannot directly measure others’ subjective experience—human or machine—and in practice rely on self-report plus behavioral analogy.
  • Some propose graded or “fish-level” consciousness for current LLMs; others insist we’re nowhere near justifying that, and that new physics or at least new theory might be required.
  • There’s widespread acknowledgment that current science has no solid criterion to say an LLM is or isn’t conscious.

Capabilities, limits, and benchmarks

  • Participants highlight impressive performance on coding, debugging, and some reasoning puzzles, but also obvious brittleness and shallow world models.
  • Suggested “real” tests of human-like thinking include: independent frontier math research, robust ARC-style tasks, long-horizon interaction (months/years) without context collapse, and autonomous problem formulation.
  • Many expect LLMs to plateau on AGI-like metrics while remaining extremely useful “stochastic parrots” plus tools.

Architecture, learning, embodiment, and memory

  • Critical limitations identified: lack of continuous online learning, lack of embodiment and rich sensory input, no durable long-term memory integrated into the model.
  • Some see hope in agentic wrappers, tool use, external memory (RAG, vector DBs), and self-adapting or reasoning models; others see this as scaffolding around the same core autocomplete engine.
  • Comparisons are drawn to brains as pretrained, constantly fine‑tuned models tightly coupled to bodies; LLMs currently resemble a frozen policy with short-term working memory.

Ethics, personhood, and social effects

  • A few bring up pending legislation (e.g., Ohio bill against AI legal personhood) and worry about a future of “AI slaves” if we ever do create sentient systems.
  • Others stress that anthropomorphizing may be harmful or manipulative: it benefits vendors, and confuses users about reliability and moral status.
  • Some argue that even if AIs are not conscious, the way we treat them trains our habits toward living beings (e.g., being cruel to chatbots vs. tools as empathy practice).

Overall tone

  • The thread is sharply divided: one side sees current LLMs as a profound demystification of human thought; the other sees them as extremely powerful language tools plus 2022‑style hype, with “thinking” talk mostly rhetorical or philosophical rather than empirically grounded.

Israels top military lawyer arrested after she admitted leaking video of abuse

Free criticism and changing norms

  • Several comments praise societies where media can expose military or political misconduct even if it “makes the nation look bad” abroad, calling this a core pillar of a free society.
  • Others argue that in Israel this norm is eroding, with growing public hostility toward investigators, prosecutors, and whistleblowers.
  • Some counter that this isn’t a new change but a continuation of long‑standing attitudes.

Abuse, investigation, and “PR damage”

  • Commenters highlight the severity of the alleged assault (including anal rape and serious physical injuries) and contrast it with leaders framing the incident as primarily a “public relations attack” on Israel and the IDF.
  • The leaker’s rationale is seen as trying to protect investigators and prosecutors under attack, not to attack Israel itself.

Accountability vs. presumption of innocence

  • One side stresses “innocent until proven guilty” and notes the footage is said to be doctored and not fully conclusive.
  • Others respond by listing broader patterns of alleged violations and argue that “just allegations” is used to dismiss systemic abuse.
  • Some say Israel has “little or no accountability” now; others claim there was never real accountability, it’s just more visible due to social media.

Public support, protests, and societal values

  • The existence of protests in defense of the accused soldiers, including participation by lawmakers, is seen as particularly disturbing.
  • There is debate over whether these protesters represent a fringe or the “average” Israeli, with references to polling (details not given) suggesting high support for current military actions.
  • A few comments generalize to global trends of celebrating cruelty and pessimism in modern democracies.

US parallels and leverage

  • Some compare Israel’s handling of legal officers to US purges or sidelining of military lawyers and intelligence counsels.
  • Others argue the US could heavily constrain Israeli behavior through sanctions or aid cuts; this is contested by those emphasizing Israel’s domestic arms industry and desire to reduce reliance on US aid.

Language, framing, and media bias

  • The term “blood libel” is criticized as a disingenuous way to describe the leak, with explanations of its specific historical meaning and why it doesn’t apply to exposing documented abuse.
  • Media choices—gendered pronouns for anonymous sources, the word “abandoned” for a car at a beach—are scrutinized as potentially identifying or misleading.
  • Some see asymmetric treatment of Israel (“scandal” vs. “exposure”) compared to other countries.

Tech, politics, and HN

  • A minority calls for excluding political news from the forum.
  • Others argue this is impossible when tech companies are deeply entangled with state power, surveillance, warfare, and human‑rights issues.

Why engineers can't be rational about programming languages

Scope of the debate

  • Several commenters note many responses fixate on “rewrites” instead of the article’s main claim: engineers’ language choices are strongly driven by identity and emotion, then rationalized after the fact.
  • Others push back on the charged title, saying they’ve seen plenty of rational, pragmatic language decisions, and that the article overgeneralizes from a few anecdotes.

How important is language choice, economically?

  • The claim that “a programming language is the single most expensive choice a company makes” is widely disputed.
  • Many argue leadership quality, team composition, architecture, and infrastructure decisions dwarf language choice in impact.
  • Some concede language can be costly at the extremes (e.g., dead ecosystems, very mismatched performance needs, exotic databases), but say most mainstream languages are “good enough” for typical business software.
  • A minority argue tool choice can indeed make or break some projects (e.g., high‑performance DBs, real‑time systems), and treating language as interchangeable is itself bad engineering.

Rewrites and migrations

  • Strong consensus: rewriting solely to change language is usually a terrible idea; only justified when the platform/ecosystem is clearly dead, fundamentally wrong for the domain, or non‑maintainable.
  • Success stories exist but are treated as rare, special‑circumstance exceptions, often done incrementally.
  • Many emphasize that rewrites mostly re-learn hard‑won lessons and risk years of delay.

Identity, tribalism, and cognitive bias

  • Many endorse the article’s idea that language allegiance is tied to professional identity and fragile expertise; unfamiliar languages temporarily make people feel less competent.
  • Others liken languages and their communities to cults with charismatic leaders, dogma, aesthetics, and “holy texts.”
  • There’s discussion of Dunning–Kruger and emotional reasoning, but also criticism that the article pathologizes disagreement without rigorously proving its claims.

Who should choose, and based on what?

  • Tension between:
    • “Use what the team already knows” / minimize cognitive and hiring cost.
    • “Pick the right tool for the job” / avoid forcing everything into one stack.
  • Several note management often drives hype‑based choices (Rust, React, Rails, etc.), or imports biases from peers (“language X doesn’t scale”).
  • Some stress the real failure is hiring “language technicians” instead of language‑agnostic engineers who can move across stacks and treat tools instrumentally.

No Socials November

YouTube, Algorithms, and Short-Form “Holes”

  • Several commenters say YouTube’s recommendations feel increasingly aggressive, especially Shorts, which they find uniquely “doomscrollable.”
  • Common coping strategies:
    • Use only the Subscriptions tab and ignore the homepage.
    • Clear or disable watch history to reset or blunt personalization.
    • Browser extensions (Unhook, Focused YouTube) to hide recommendations/Shorts and turn YouTube into “search-only.”
    • Some pay for YouTube Premium to avoid ads; others refuse, preferring ad blockers or just not watching.

Is Hacker News Social Media?

  • Large disagreement:
    • “Yes” camp: upvotes, comments, dopamine hits, and addictive checking make it clearly social media, even if less optimized for engagement.
    • “No” camp: sees HN as a forum or “social news” site—text-only, no DMs, no personalized feed, no follower graph, topic- not identity-centric.
  • Some define social media by mechanics (user voting, algorithmic feeds, profiles, followers); others by how you use it (social interaction vs just reading).
  • Multiple people say HN is their “last remaining social” and also their hardest to quit.

Psychological Effects: Envy, FOMO, Addiction

  • Several note social media triggers envy and inadequacy; others say HN can feel just as status-laden and jealousy-inducing, especially around careers and money.
  • Others push back: much content is exaggerated or fake “lifestyle porn,” and these reactions are common enough to be considered normal (FOMO), not individual pathology.
  • HN is often described as lower-toxicity and better signal/noise than mainstream platforms, but still a dopamine source.

Alternatives, Boundaries, and Tools

  • Many advocate permanent structure over one-month fasts:
    • Use RSS, or email as a central hub with batching and filters.
    • Script or extension-based interventions to kill feeds, thumbnails, comments, or entire sites; avoid apps, use only browsers.
    • Move toward smaller, topic-focused communities (forums, Fediverse, custom microblogs, self-hosted “mini-Twitter” blogs).

Broader Critiques of Social Media & “Simulacrum”

  • Several comments frame social media and news as simplified, distorted models of reality that increasingly reshape the offline world.
  • Some argue corporate, ad- and engagement-driven platforms systematically promote outrage and anger; non-corporate or decentralized networks are seen by some as a partial antidote, by others as still fundamentally social-first distractions.