Hacker News, Distilled

AI powered summaries for selected HN discussions.

Page 321 of 786

The repercussions of missing an Ampersand in C++ and Rust

Pass-by-value vs const reference in C++

  • Some argue const T by value is often valid and even faster for small or trivially copyable types; ABIs may pass such values in registers, and copying within a cache line is cheap.
  • Others see const T vs const T& as a dangerous one-character difference that can silently cause big copies and performance bugs, and that intent is often “reference” in large types.
  • clang-tidy and similar tools can flag many unnecessary by-value parameters, but only conservatively; correctness and ABI specifics complicate static detection.

Tooling, pipelines, and “skill issue”

  • One camp says modern C++ practice assumes heavy tooling: clang-tidy, sanitizers, multiple compilers, CI, etc.; with this setup, such mistakes “aren’t an issue.”
  • Another counters that many C++ developers don’t use such tooling consistently and that blaming developers (“skill issue”) ignores systemic language pitfalls.
  • Rust is praised for needing much less external tooling to avoid whole classes of bugs.

Move semantics: C++ vs Rust

  • Rust’s “destructive” move (no valid moved-from object) is seen as simplifying type design: no need for hidden “empty” or “moved-from” states and fewer invariants to maintain.
  • C++’s non-destructive moves require every type to define a valid moved-from state, often implying optional-like internal states and more complex destructors and methods.
  • Some think this is a fundamental design flaw; others argue it’s flexible and acceptable if you treat moved-from objects as only destructible/reassignable.

References, copies, and ergonomics

  • Several comments liken T vs T& to nullable vs Option: the fact that both compile with identical calling syntax makes subtle mistakes easy and hard to see in code review.
  • Rust is praised for explicitness: you must write & at call sites or .clone(), and misuse leads to compile-time errors, including use-after-move.
  • Some propose making C++ implicit copies rarer (e.g., explicit copy constructors) or using ref-style keywords (as in D) to reduce ampersand-related footguns.

We already live in social credit, we just don't call it that

Government vs. Corporate Social Credit

  • One camp argues the key dystopian feature of China’s system is state control: a centralized, mandatory score backed by police, prisons, and legal monopoly on force.
  • Others counter that what matters is helplessness and lack of appeal, not who runs it: a cartel of corporations or data brokers can function as a para‑government.
  • Debate over whether government involvement would make things better (democratic oversight, regulation) or worse (no escape, no alternatives, more coercive tools).

Existing Western Scoring & Gatekeeping

  • Credit scores already shape access to housing, jobs, insurance, loans; ChexSystems and similar tools can effectively exile people from banking.
  • Corporate scoring is pervasive: Uber/Lyft ratings, Amazon refund behavior, Airbnb trust metrics, LinkedIn engagement, internal “CDP”/CRM profiles. People fear being banned for honest negative feedback.
  • Newcomers or migrants with no local credit history face severe friction renting, buying cars, or opening accounts despite good income and savings.
  • SMS 2FA, KYC, and identity verification tie accounts tightly to real identities, making “just make a new account” increasingly unrealistic.

Centralization, Power, and Opt‑Out

  • Real dystopia emerges when:
    • Scores are shared/aggregated across many services.
    • A few dominant platforms (banks, tech giants, landlords) behave like utilities.
    • Opt‑out or “start over” becomes economically impossible.
  • Pre‑digital “reputation” was local and fuzzy; you could move towns and reset. Digital records are global, durable, and opaque, with little recourse or decay.
  • Some argue private discrimination is acceptable because you can choose alternatives; others note that with monopolies/duopolies that “choice” becomes fictional.

China vs. Western Reality

  • Several comments note that China does not yet have a single nationwide personal social credit score; most systems are financial/regulatory and fragmented, with limited pilots for individuals.
  • Others stress that authoritarian systems show their teeth when you cross political lines: day‑to‑day life can look “normal” until you’re in a minority, politically active, or in trouble.

Authoritarian Drift & Regulation

  • Many see Western “social credit” emerging via public‑private collusion: data sharing, immigration enforcement, protester targeting, platform bans, and informal speech policing.
  • Suggestions include: strict data‑sharing limits, enforceable rights to appeal and correct records, time‑decay of negative marks, and treating some corporate systems like regulated public utilities.
  • Skeptics doubt any large‑scale social credit can remain non‑dystopian, as opting out will almost always be treated as a negative signal.

AI web crawlers are destroying websites in their never-ending content hunger

CAPTCHAs and User Friction

  • Rising bot abuse is driving more sites to use CAPTCHAs, especially reCAPTCHA and Cloudflare challenges.
  • Many commenters now abandon CAPTCHA-heavy sites, sometimes turning to AI tools instead.
  • Tools like Anubis are seen as “less bad” than reCAPTCHA but are slow on low-end devices and can break some phones.

Scale and Nature of AI Bot Traffic

  • Reports of AI bots consuming orders of magnitude more resources than humans; one operator estimates only ~5% of traffic is real users.
  • Bots often ignore caching basics, robots.txt, or polite crawl rates, sometimes hitting dynamic or deep pages at ~1 request/second or worse.
  • Large crawlers increasingly spoof user agents and use huge IP pools (hundreds of thousands of IPs) to evade rate limiting and ASN blocks.

Impact on Small Sites and Hosting Costs

  • Hobby and mid-sized sites (forums, gaming resources, art galleries, roleplaying communities, railroading forums) describe traffic surges that effectively DDoS them.
  • One static gaming site faces ~30GB/day from a single crawler, threatening hundreds of dollars in overage fees. Others have been forced into login walls or paywalls.
  • WordPress-backed sites are especially vulnerable due to slow DB-heavy page generation and limited, fragile caching.

Mitigation Tactics in Practice

  • Common approaches: blocking known AI user agents, nginx-level filters, rate limiting, fail2ban-style rules, ASN/IP blocklists, honeypots, and tools like Anubis.
  • These reduce abuse but create collateral damage for VPN users, non-Chrome browsers, accessibility tools, and privacy-focused clients.
  • Arms race dynamic: once blocked, sophisticated crawlers distribute more, fake agents harder, and slow their request patterns.

Why Modern Crawlers Feel Worse Than Old Search Bots

  • Earlier search engines were fewer, resource-constrained, and generally honored robots.txt and modest recrawl frequencies.
  • AI companies are heavily capitalized, competing on freshness and coverage, and often treat crawl cost as negligible while externalizing bandwidth/CPU to site owners.
  • Some commenters claim AI training runs repeatedly re-scrape the web rather than reusing stored corpora.

Centralization, Ethics, and Proposed Structural Fixes

  • Many site owners feel driven toward centralized CDNs like Cloudflare simply to survive bot loads, despite worries about internet centralization and surveillance.
  • Proposed systemic fixes include:
    • Cryptographically signed “good bots” / agent identities.
    • Proof-of-work or micropayment gates per request.
    • Standardized low-cost APIs, RSS-like feeds, or WARC dumps for scrapers.
    • AI-targeted tarpits serving infinite or poisoned content.
  • Skeptics argue that abusive actors will ignore any norms, and that expecting small sites to build special feeds for AI is unfair.

Broader Sentiment

  • Strong resentment toward AI companies: viewed as unethical “milkshake drinkers” extracting value without compensation and destabilizing the open web.
  • Some foresee continued contraction of the public web into walled gardens, paywalls, and CDNs unless crawler behavior changes.

OpenAI says it's scanning users' conversations and reporting content to police

Sycophancy, Mental Health, and “AI Psychosis”

  • Many see sycophancy (agreeing with and validating users at all costs) as a core design failure that amplifies delusions and crises.
  • The murder‑suicide and teen‑suicide cases are cited as examples: the model reinforced paranoia and self‑harm planning instead of challenging it or cutting off.
  • Several comments argue that GPT‑4o was overly fine‑tuned on user feedback (“be nice”) for engagement, then shipped in a rush to beat competitors, despite internal safety concerns and weak multi‑turn testing.
  • Others note that non‑sycophantic behavior can also be risky for people in crisis; handling such conversations is what trained professionals are for, not LLMs.
  • Proposed mitigations: crisis detectors and kill‑switches, hotlines instead of continued chat, opt‑in emergency contacts, or swapping to a “boring/safe” persona. Some think even that is too risky or manipulative.
  • There are anecdotes both of LLMs helping stabilize mentally ill users and of them badly worsening situations.

Scanning, Reporting, and Policing

  • OpenAI’s policy of escalating “imminent threat of serious physical harm to others” to human reviewers and possibly law enforcement is seen by many as chilling.
  • Concerns:
    • US police are a “cudgel not a scalpel” in mental‑health crises; risk of lethal outcomes or de facto pre‑crime.
    • New attack surface for “prompt‑injection swatting”: using LLMs to get others reported.
    • Slippery slope to flagging political dissent, hacking discussion, asylum help, etc.
  • Others note OpenAI was just criticized for not intervening in earlier suicides, so it now faces mutually incompatible demands: privacy vs protection.

Liability, Ethics, and Regulation

  • Strong sentiment that LLM makers should bear legal liability similar to humans who encourage self‑harm, especially given marketing that overstates intelligence and trustworthiness while burying disclaimers.
  • Several argue the real failure is not scanning/reporting but deploying and rolling back safety‑critical mitigations primarily for business reasons.
  • Suggestions: regulate marketing claims (“intelligent,” “assistant”), require prominent warnings, restrict use in therapy, and treat reckless deployment as actionable negligence.

Privacy and Local Models

  • The policy pushes some users toward local or “secure mode” LLMs to avoid surveillance, though others warn this also lets vulnerable people evade any safety net.
  • There’s debate over how capable local, smaller models really are, but privacy and control are key motivators.

Bigger Picture: Tech, Capitalism, and Education

  • Split views on whether “the species isn’t ready” vs “the tech/market rollout isn’t ready.”
  • Long subthread blames capitalism/MBAs/sales culture for rushing unsafe systems and anthropomorphizing them for profit.
  • Others emphasize user education: widespread campaigns on failure modes, hallucinations, and limits, rather than relying on opaque corporate safeguards or state surveillance.

Anthropic raises $13B Series F

Valuation, growth, and “bubble” worries

  • Many find a $183B post-money valuation hard to justify given current revenue, especially compared to Alphabet; others argue investors are forward‑looking and hypergrowth can rationalize high multiples.
  • Reported run‑rate growth from ~$1B to $5B+ and projected ~$9B ARR in 2025 is cited to defend ~20x sales as within tech norms, especially with high gross margins.
  • Critics stress that comparing revenue to valuation ignores huge training capex and unclear GAAP profitability; some point to analyses claiming Anthropic is “bleeding out.”
  • A recurring frame: this is essentially a lottery ticket on near‑AGI. If one lab “wins,” current valuations could look cheap; if not, this is a classic bubble.

Compute moat, infrastructure, and sustainability

  • The “compute moat” is a major theme: the game is seen as whoever can secure 100k+ H100‑class GPUs plus massive power and cooling, with TSMC and utilities as real kingmakers.
  • Some liken this to semiconductors or dark fiber: enormous up‑front capex, short front‑line lifetimes, and potentially stranded assets if progress stalls or more efficient approaches emerge.
  • Others argue this spend could unintentionally drive big advances in power generation and grid build‑out (nuclear, renewables), though environmental impact and resource use (electricity, water) worry many.

Business model, competition, and moats

  • Strong adoption in coding (Claude Code, Codex, etc.) convinces some that LLMs are “beyond useful” for software; others feel most use cases are still marginal gains over search and don’t justify capex.
  • Debate over whether Anthropic’s moat is more than GPUs: factors mentioned include talent concentration, proprietary data, integrated tooling, and agents; skeptics point to fast‑improving open models, distillation, and price competition.
  • There’s concern that frontier models have ~6–12 month lifespans before being leapfrogged, forcing an expensive “train‑or‑die” cycle.

Capital, pensions, and market structure

  • Commenters note that much of this cash comes from asset managers and public pensions (e.g., Ontario Teachers’), meaning broad exposure via index funds and retirement plans.
  • SPVs and fee‑stacking intermediaries are reported around this round; late employees and retail investors are seen as likely eventual bagholders.
  • Some argue today’s late‑stage private rounds replace what IPOs used to be, locking “meteoric” upside away from the public.

Bubbles, history, and outcomes

  • Many explicitly call this an AI bubble, predicting a crash once model gains plateau or economics fail; others compare it to autos, dot‑coms, or YouTube: bubbles that still produced enduring giants.
  • There’s disagreement on whether this spending is wealth creation (building transformative infrastructure) or “cash furnace” misallocation that could end in ghost data centers and a painful correction.

Twitter Shadow Bans Turkish Presidential Candidate

Legal compliance vs moral responsibility

  • Many comments argue X is “just following the law” in Turkey under a court order; others counter that obeying unjust or selectively enforced laws is still a moral choice, not a neutral obligation.
  • Some suggest companies should only follow the laws of their home jurisdiction and avoid local offices in repressive states to reduce leverage such as fines, bans, or threats to staff and families.
  • There is debate over what higher standard than “the law” should guide platforms—human-rights frameworks vs. religious or cultural moral systems—with no consensus on who should decide across borders.

Musk/X and the “free speech” brand

  • Several point out a perceived contradiction: X loudly defies or theatrically “fights” some democracies (e.g., Brazil, EU, UK) yet appears highly compliant with authoritarian demands from countries like Turkey and India.
  • Others argue this is a consistent policy: resist where censorship orders conflict with local free-speech law, comply where censorship is explicitly legal. Critics call this selectively principled and driven by financial or political interests.
  • Pre-acquisition Twitter is portrayed by some as more willing to push back on Turkey and selectively geo-block; others note it also cooperated extensively with governments and intelligence-linked moderation.

Evidence and ambiguity around the alleged shadow ban

  • Some commenters stress the article itself concedes there is no “solid proof,” only circumstantial signs: reduced impressions, missing likes/retweets, and low visibility even for followers with notifications.
  • Skeptics warn that user-level anecdotes are unreliable given opaque algorithms and personalization, calling the story speculative or “misleading.”
  • Others add context from Turkish politics—offline bans on the candidate’s name and images—to argue it’s highly plausible the government pressured X, even if the specific mechanism (shadow ban vs. formal restriction) is unclear.

Platforms, censorship, and expectations

  • There is broad concern that algorithmic throttling is more dangerous than outright blocking because it is targeted and hard to detect or prove.
  • Some argue relying on private, ad-driven platforms as “public squares” is inherently flawed; real free speech should mean controlling one’s own site and distribution, with censorship defined as state suppression of that independence.
  • Multiple comments generalize the issue: all major platforms are seen as political actors, routinely shaping discourse for states, intelligence services, or owners’ ideological goals, not as neutral conduits.

The staff ate it later

Title pun and lighthearted thread drift

  • Many comments play on the double meaning of “staff” (TV crew vs. magic staff), spawning Bible jokes about staffs/serpents, cars (“in one Accord”), tablets/iPads, and other tech and vehicle puns.
  • Some expected a literal “staff swallowed staff” story or a tech-bureaucracy metaphor (“staff ate all the good ideas”) before realizing it was just a wordplay-based title.

Religious texts, origins, and “truth”

  • Several posts connect Old Testament stories (serpent, flood, eternal life, image of God) to earlier Mesopotamian and Egyptian myths (Hammurabi, Gilgamesh, Atrahasis).
  • One subthread contrasts “metaphorical/pragmatic truth” (beliefs that help societies thrive) with “factual/journalistic truth,” debating which matters more when they diverge.
  • Others caution that cultural memes spread not only because they’re useful but also because they’re simple or psychologically “sticky.”

Jesus, Magi, and historicity

  • Discussion on early depictions of Jesus with a “magic wand,” and the Magi as “magicians” vs. Zoroastrian priests.
  • Long digression on Jesus’ likely appearance (Levantine, not the stereotypical white European depiction) and how “European” and “white” have been historically and politically fluid categories.
  • Separate subthread explores how ancient Greeks viewed Magi as rational, astronomy-informed leaders, and how ancient people did distinguish philosophy, religion, and magic, albeit differently from today.

Flood stories and historic claims

  • One commenter argues Noah’s ark account is more historically reliable than Mesopotamian flood myths because it is simpler, monotheistic, more “ethical,” and specifies a seaworthy ark shape.
  • Others strongly dispute the moral framing (mass drowning as “ethical”) and question the claim of historical fidelity, seeing flood tales primarily as theological displays of divine power.

Food waste, mottainai, and cultural attitudes

  • Many focus on Japanese mottainai (regret over waste), connecting it to the on-screen assurance that “the staff ate it later.”
  • Comparisons with Western norms: some see similar anti-waste upbringing (WWII/Depression generations, “finish your plate”), others see the US as unusually tolerant of visible waste.
  • Plastic over-packaging in Japan is criticized; some defend it on hygiene and mold-prevention grounds, noting the actual amount of plastic per item can be small.

Translation nuance and localization

  • Multiple bilingual commenters discuss 美味しくいただきました: literally “we gratefully/ deliciously received (and ate) it,” with politeness baked in.
  • Debate over best English rendering: “the staff ate it later” is literal but flat; “the staff enjoyed it later” better captures the politeness/pleasantness but risks implying broader uses of “enjoy” than Japanese allows.
  • Consensus: Japanese → English often forces a tradeoff between naturalness and verbatim accuracy; here the stock phrase functions more like a ritual reassurance than a factual gustatory review.

Japanese TV disclaimers and “infantilization”

  • One long comment frames “the staff ate it later” as part of a wider trend: Japanese TV plastering everything with disclaimers (“one hypothesis,” “filmed with permission,” timestamping appearances by scandal-tainted people).
  • This is attributed to hypersensitivity to viewer complaints and a “customer is always right” culture, which some feel has dumbed TV down and accelerated youth flight from the medium.

Western parallels and production realities

  • Western shows increasingly add “no food was wasted” or “crew ate this” lines (e.g., Taskmaster, YouTube, GBBO). Some find these reassurances comforting; others see them as somewhat performative given overall production waste.
  • Behind-the-scenes notes: on film sets, actors often don’t really eat (continuity, multiple takes, timing, food safety). Crew commonly eat leftovers in many productions and restaurants, though policies vary widely.

Food waste vs. overconsumption and ethics

  • A subthread argues that overeating surplus calories is itself a form of waste comparable to binning food; others reject this equivalence.
  • Broader moral discussion on animal welfare: contrast between people’s empathy for individual visible animals (pigeons, birds, movie animals) and tolerance of industrial-scale livestock suffering.
  • Explanations proposed include psychological distance from production, cultural norms, evolutionary empathy mechanisms, and differing views on whether human “dominion” justifies current meat practices.

Americans Lose Faith That Hard Work Leads to Economic Gains, WSJ-NORC Poll Finds

Hard work, luck, and “value”

  • Many argue hard work alone has never guaranteed economic gains; what matters is doing work that is economically valued and being positioned to capture some of that value.
  • Examples: roofers, EMTs, teachers, farm workers work harder and provide more social value than many office workers, but earn far less.
  • Several point to luck, background, timing, and access to capital as major determinants of outcomes; “hard work” mostly improves odds in a rigged lottery.

Housing, inflation, and living standards

  • Housing costs are repeatedly described as the “knife in the side” of the economy: even decent wages are consumed by rent/mortgages.
  • Anecdotes compare mid‑20th‑century workers buying homes on modest incomes vs today’s six‑figure professionals struggling to afford small condos in safe areas.
  • Inflation debates split: some blame stimulus and money printing, others emphasize supply shocks, corporate pricing, and that real wage gains at the bottom were brief and politically unpopular.

Education, STEM, and the broken career ladder

  • Commenters see highly credentialed Gen Zs (APs, good universities, STEM degrees) failing to get jobs, even begging for unpaid “experience.”
  • Older workers recall eras when entry‑level tech training was employer‑funded; now firms prefer offshore labor, visas, or pre‑trained candidates.
  • Advice to “be a problem‑solver for hire” is criticized as out‑of‑touch because that path is now saturated too; credentials no longer guarantee stability.

Inequality, capital, and taxation

  • Broad sense that wealth and income have shifted from labor to capital: real estate, equities, financial engineering, and “rent seeking” dominate gains.
  • Strong criticism of lower tax rates and loopholes for capital gains and ultra‑wealthy vs W‑2 labor; others counter that risk and inflation justify differential treatment.
  • Some call for extreme measures: wealth caps, forced “retirement” of billionaires from power, higher top tax rates, or even criminal liability for “social murder” by executives.

Poll, mood, and legitimacy of the “American Dream”

  • Several dig into the poll PDF and note that attitudes about the American Dream haven’t moved much in three years, but unemployment definition and sample (many non‑workers living in owned homes) complicate interpretation.
  • Despite methodological quibbles, many describe a visible “vibe”: wealth inequality is palpable, middle‑class security has eroded, and belief that “if you work hard you’ll get ahead” is no longer credible for large parts of the population.

You don't want to hire "the best engineers"

Junior vs “Best” Engineers in Startups

  • Many argue early-stage startups need a core of experienced engineers to avoid basic security/complexity “footguns,” but can add juniors once that base exists.
  • Others cite successful companies built with one strong CTO plus a bench of juniors, stressing that “super engineers” aren’t required—just people who have already made early-career mistakes elsewhere.
  • Several note you usually need different profiles over time: zero-to-one “ship fast” engineers early, then reliability/scale-focused people after product–market fit.

What “Best Engineer” Really Means

  • Commenters reject a universal “best”: effectiveness depends on context (greenfield vs legacy, tiny startup vs FAANG, heavy collaboration vs solo deep work).
  • Skills like communication, coordination, system design, and consistent ticket execution often matter more than raw coding brilliance.
  • Many warn that “we only hire the best / A-players / rockstars” often signals a toxic, overcompetitive, or prestige-obsessed culture.

Hiring Constraints, Compensation, and Equity

  • Consensus that most startups cannot realistically attract the top 1% who have networks, options, and leverage; they expect high comp, flexibility, and real influence.
  • Equity is now heavily discounted by candidates; many value it at a small fraction of face value or ignore it entirely due to dilution and bad exit experiences.
  • Several point out that if a role is unfilled for 6+ months, it’s usually a “you problem” (comp, requirements, or work environment), not a talent shortage.

Process, Pipelines, and Where Great Hires Come From

  • Strong engineers are often hired through networks and prior collaborators, not generic job ads or seven-round interview gauntlets.
  • Pedigree filters (elite schools, FAANG, trendy stacks) miss “moneyball” candidates with high potential but non-obvious resumes.
  • Junior teams frequently fail at assessing senior candidates, leading to endless churn and unfilled roles.

Engineering vs Business Priorities

  • Multiple threads stress that early startups are primarily business endeavors: survival may justify tech debt and “good enough” CRUD over ideal architectures.
  • Others share horror stories where unmanaged tech debt later becomes an existential drag, arguing experienced engineers should right-size architecture to the business stage.
  • Underneath the “best engineer” rhetoric, most companies really need reliable, learning-oriented people who align with the product, culture, and chosen work mode (remote vs in-office).

The Little Book of Linear Algebra

Format, tooling, and distribution

  • Readers praise the compact, point-form style and clean LaTeX source; some say the .tex is almost readable as text.
  • The EPUB uses HTML + MathML generated via Pandoc, which several people find notably clean and modern.
  • GitHub’s LaTeX rendering works well up to a point, then fails with “[Unable to render expression]”, leading to speculation about an internal limit and prompting some to switch to the EPUB.
  • A few users report issues: PDF not opening, and a typo in the GitHub org name (“litte”).
  • Suggestions include adding a pointer to the repo inside the book itself.

Target level and suitability as a resource

  • Many see it as a great refresher or compact reference rather than a full teaching text.
  • Several criticize “beginner-friendly” claims: set-theoretic notation appears immediately, symbols are not always introduced, and some concepts (eigenspaces, normal equations) are mentioned without proper definition or derivation.
  • Others argue there is no universally beginner-friendly level; if basic set notation is unfamiliar, a reader may need more preliminary material.
  • There’s appreciation that it’s CC-licensed and free, but some feel that lack of proofs, illustrations, and motivation limits its use as a first exposure.

Teaching linear algebra: motivation and difficulty

  • Strong debate over whether linear algebra basics are inherently boring or just badly taught.
  • One camp says you must “power through” the mechanics (vectors, matrices, Gaussian elimination) before the interesting parts (eigenvalues, SVD, applications) become visible.
  • Others insist matrix multiplication and linear transformations can be motivated early via composition of linear maps, geometry, or graphics (rotations, reflections), though examples like translation spark technical corrections (not linear in Euclidean space).
  • Multiple commenters stress geometric and visual intuition, advocating graphics programming, 2D/3D examples, and tools like Processing or GeoGebra.
  • There’s recurring criticism of how schools over-emphasize algorithmic calculus while under-teaching vectors, matrices, probability, and statistics.

Alternative resources and broader ecosystem

  • Numerous recommendations surface: more visual/interactive notes, standard and “no-bullshit” textbooks, geometry-focused intros, Axler-style “matrices later” approaches, and OCW/YouTube courses.
  • 3Blue1Brown’s linear algebra series is repeatedly highlighted as making concepts “click”.
  • Some note that AI/LLMs are now effective helpers for decoding unfamiliar notation from PDFs or screenshots.
  • The author mentions a similar “little book” on calculus and an in-progress broader series on math and CS.

Passkeys and Modern Authentication

Exportability, Specs, and User Freedom

  • Strong disagreement over specs forbidding plaintext export of private keys and mandating complex HPKE-based export flows.
  • One side: export in cleartext is obviously insecure; at minimum exports should be passphrase‑encrypted, and non‑exportable keys (e.g., YubiKeys) are a feature.
  • Other side: the protocol should not dictate the user’s security model; blocking even encrypted export removes user choice, complicates archival, migration, and handling of deceased users’ accounts, and creates de‑facto lock‑in.
  • Concern that “temporary minimums” (allowing encrypted exports now) may disappear later as standards tighten.

Lock‑in, Attestation, and Power Asymmetry

  • Fear that attestation plus RP choice will let sites whitelist only big-tech or “approved” managers, excluding open-source tools; KeePassXC’s Github thread is cited as a warning signal.
  • Some argue this is analogous to sites rejecting weak passwords or requiring corporate MFA apps; services already choose what they deem secure.
  • Others see this as constructing technical chokepoints that governments and corporations can later weaponize for real‑identity requirements and platform lock‑in.

Security Benefits vs. Phishing and TOTP

  • Security practitioners in the thread are broadly positive on passkeys: they remove passwords, are phishing‑resistant, and close common holes (TOTP phishing, reused passwords, credential stuffing).
  • Passkeys are seen as weaker than “password + hardware key” but stronger than password+TOTP or email codes; TOTP is described as obsolete for high‑stakes use because phishing it is easy in practice.
  • Critics counter that data breaches and provider screw‑ups are larger real‑world risks than phishing, and that exportable secrets (passwords, TOTP seeds) remain more user‑controllable.

UX, Recovery, and Family Use

  • Many report serious UX pain: multi‑step AWS logins, confusing flows, unclear “where the passkey lives,” and broken experiences across devices and kids’ phones.
  • Non‑exportable keys make migration between managers (hundreds of sites) or off ecosystems (Apple, Google) daunting; backup stories (lost devices, SMS‑only recovery, Authy desktop deprecation) drive skepticism.
  • Some propose mitigating via multiple passkeys per account, hardware keys, and family‑oriented SSO‑like dashboards, but note these don’t really exist for consumers yet.

Alternatives and Comparisons (SSH, X.509, SSO)

  • A camp argues SSH‑style public‑key auth “solved” login with far less complexity; passkeys add attestation, RP IDs, and privacy logic largely to handle web tracking and phishing.
  • Others respond that SSH’s fingerprint / TOFU model fails for most users, and WebAuthn’s binding to the relying party is a genuine improvement.

Imgur's community was in revolt

Perceived Long-Term Decline of Imgur

  • Several commenters say “years-long degradation” started well before the 2021 acquisition.
  • Early red flags: redirecting direct image links to ad-heavy pages, gimmicky overlays (e.g., swipe prompts), and later TikTok-style videos under the requested image.
  • Deletion of large swaths of old content (e.g., retroactive nudity bans) is seen as breaking an implicit “trusted host” contract.

Reddit Parallels and Why External Image Hosts Existed

  • Imgur originally filled Reddit’s gap: fast, free hosting when Reddit was mostly text and external links.
  • Reasons Reddit didn’t host images early:
    • Storage and bandwidth were much more expensive; Reddit was small, underfunded, and busy just staying online.
    • Hosting images brings added legal risk and moderation burden, especially for NSFW and borderline content.
  • Earlier hosts like ImageShack and Photobucket became slow, ad-infested, paywalled, or deleted popular images, prompting the creation and rapid adoption of Imgur.

Porn, Liability, and Moderation Culture

  • Multiple anecdotes describe early Reddit as awash in porn and minimally moderated, with “anything legal” (or close to it) tolerated.
  • People recall creepy or borderline subreddits (jailbait-style, creep shots, bestiality, white supremacist spaces, Gamergate organizing).
  • Many argue this made first-party image hosting a legal and reputational nightmare.
  • There’s an extended philosophical debate:
    • One side emphasizes free speech = legality.
    • The other stresses platforms’ right not to host disturbing but legal content, and notes “hardcore free speech” platforms tend to become unusable for most people.

Imgur as Utility vs. Community

  • Some are surprised Imgur has a “thriving community” at all; they only ever used it as plumbing for Reddit/forums.
  • Others insist the on-site community has existed for over a decade, often unaware of (or indifferent to) its role as Reddit’s image backend.
  • Reports of a hostile, insular culture: welcoming if you fit in, aggressive and incurious if you don’t.
  • Confusing privacy/public defaults led to “accidental” public posts from people who thought they were just uploading to embed elsewhere.

The Revolt, AI Moderation, and Outcome

  • The immediate trigger: new owners fired human moderators and replaced them with “AI moderation.”
  • Protest tactics evolved: middle-finger images, mass TOS-violating porn, solid-black “blackout” posts, and oversized images/videos to strain infrastructure.
  • By the time of discussion, visible protest largely subsided; front page looked normal to some, though others still noticed unusually racy content and oversized files.
  • One view: like Reddit’s API revolt, it won’t change management but will push some users off the platform or to Lemmy/other sites; another notes the revolt briefly made Imgur better by crowding out political spam.

Economics, Enshittification, and Alternatives

  • Broad agreement that “nothing is free”: once investor money runs low, platforms must monetize, often via ads, engagement tricks, or policy changes that alienate users.
  • Imgur’s trajectory is framed as a standard “enshittification” arc: beloved simple tool → VC-funded growth → pressure to extract more value → community backlash.
  • Some argue Imgur’s meme-heavy community is almost impossible to monetize well, making drastic moves inevitable.
  • Alternatives mentioned:
    • catbox.moe: intentionally simple host, community-funded; supporters pitch in monthly, but others warn that such funding is fragile (e.g., Patreon issues) and that overexposure could overload it.
    • s3nd.pics and similar minimalist hosts trying to recreate “old Imgur” with fewer ads/algorithms.

Wider Web Annoyances

  • Side discussion about intrusive email gates and modals on the article’s site;
    • The publisher claims this is partly to combat AI scraping and support journalism.
    • Commenters doubt the technical effectiveness and compare modals to the old popup-ad problem, now largely unsolved at browser level.

Take something you don’t like and try to like it

Taste, Judgment, and Snobbery

  • Some argue you shouldn’t try to like everything; “cultivating taste” means being able to tell good from bad and disliking much of what you encounter.
  • Others counter that “taste” often becomes class signaling or snob Calvinball; it’s fine to like “trash” as long as you can recognize it as such.
  • Several note taste changes over time; rediscovering things you once hated (or cringing at old favorites) is common.

Acquired Taste and Changing Preferences

  • Many examples of learned liking: tomatoes, spinach, natto, salted licorice, gin and tonic, wine, cilantro, opera, anime, jazz, rap.
  • Repeated exposure and context (travel, culture, peers, stories about the thing) often shift aversion into enjoyment or at least tolerance.
  • Others report genuine sensory or allergy-like issues (tomatoes, seafood, coffee, alcohol) where repeated exposure doesn’t help and can’t just be “pushed through.”

When Not to Force It

  • Several people insist it’s fine—and important—to accept stable dislikes (sports, cooking, karaoke, much TV).
  • A recurring theme: don’t mistake the essay for “you can/will like everything”; it’s more “sometimes your first reaction is wrong, so experiment.”
  • Some see deliberate trying-to-like as over-socialization or self-betrayal; they prefer intrinsic attraction, not “working” to enjoy something for others’ approval.

Kids, Exposure, and Broadening Horizons

  • Techniques for children: storytelling about changing tastes, respecting current preferences while keeping doors open, quick competence boosts, enthusiasm, camps/peer groups, and limiting more-attractive substitutes.
  • Parents note on-demand entertainment makes “just try it” harder; background/ambient exposure (music during chores, radio in the car) often works better than making “trying” a high-pressure activity.

Compulsion, Hobbies, and Rabbit Holes

  • Some avoid new categories (coffee, aquariums, beer) because they know they’ll obsess, burn time, and escalate gear costs.
  • Others report having too many hobbies and feeling stressed, or conversely being unable to fully immerse in anything. ADHD and dopamine dynamics come up repeatedly.

Context, Understanding, and Identity

  • Many emphasize that appreciation often follows understanding (architecture, churches, jazz, classical music, country, anime).
  • People distinguish between disliking a thing vs. disliking the culture around it (wine snobs, country fans, anime fandom, churches as institutions).
  • Travel and deliberate openness are framed as ways to keep mental plasticity, reduce pessimism, and avoid becoming rigidly negative with age.

Toronto’s network of pedestrian tunnels

Climate, Comfort, and Purpose

  • Many see Toronto’s cold, windy, slushy winters as a primary driver of the PATH’s development and value; others argue Toronto is “mild for Canada” and that the climate is being exaggerated.
  • Beyond temperature, “road snot” (dirty snow–salt–slush mix) and ice make surface walking unpleasant, especially at intersections.
  • Tunnels are also appreciated in summer heat and humidity; some condo residents reportedly live, commute, and run errands without going outside.
  • A macro argument: PATH connects a hyper-dense financial district to Union Station (~300k daily passengers), preventing dangerous sidewalk crowding at rush hour.

Comparisons to Other Cities

  • Similar systems cited: Montreal’s Réso, Winnipeg Walkway, Calgary’s +15 and +30/+45 levels, Minneapolis Skyway, Chicago Pedway, Sapporo and other Japanese undergrounds, Seoul, Hong Kong, Helsinki, and various university tunnel networks.
  • Quality varies: some (Toronto, Tokyo, parts of Montreal) feel like high-end malls; others (Chicago Pedway, Philadelphia concourse) are described as dingy, underfunded, or underused.

Design, Origins, and Economics

  • PATH grew piecemeal via one-to-one deals between buildings, motivated by leasing valuable basement retail and connecting to subway/commuter rail.
  • Early links reportedly predate mass car culture (e.g., between department stores), though later expansions intersect with car-dominated planning.
  • Retail is heavily oriented to 9–5 office workers; many shops close evenings/weekends and suffered after COVID, leaving noticeable vacancies.

Navigation, Scale, and Everyday Use

  • Users describe PATH as vast, maze-like, and poorly signed—effectively a chain of basements and malls; multiple routes turn trips into a “shortest path problem.”
  • GPS is unreliable; specialized apps exist, and one commenter experimented with Wi-Fi–based positioning before Android tightened APIs.
  • A 5K race in the tunnels highlighted both their utility (all-weather exercise) and their navigational complexity (runners got lost).

Urbanism, Cars, and Trade-offs

  • One camp sees tunnels/skyways as car-era band-aids that siphon life from streets and help office workers avoid the poor and the weather.
  • Others argue they complement, not replace, surface streets, and are justified by harsh or highly variable climates and extreme downtown density.
  • Broader debate spills into North American car dependence vs. European/Asian transit and walkability, with sharp disagreement over how much climate vs. policy and design truly matter.

What's New with Firefox 142

Local AI Translation & Models

  • Strong enthusiasm for Firefox’s fully local, offline translation; seen as genuinely useful and privacy-preserving.
  • Quality is considered “not perfect but amazing,” especially for users switching among many languages, including ones they know only partially.
  • Pain points:
    • Want ability to force translation even when language detection doesn’t trigger.
    • Desire for simple “good/bad translation” feedback to improve models.
  • Workarounds: translation via context menu or the main “Translate page…” entry.
  • Models are open and reused in third‑party apps (e.g., Android translator using the same models).

Link Previews & AI Summaries

  • Mixed reception: some find previews intriguing (especially with local AI summaries), others see them as slow, buggy, or redundant vs. middle‑click + close.
  • Discoverability disputed: long‑press vs. hover vs. OS “force click” on macOS; debate over what counts as a true “affordance.”
  • Privacy concerns:
    • Clarified that previews only load on explicit interaction (long‑press or menu) and summarization is local.
    • Still concern about unintentionally “visiting” tracking/phishing links, especially if hover mode is enabled.
  • Open questions/complaints:
    • Whether previews respect extensions like uBlock; some fear they may not.
    • Previews often blocked by cookie/newsletter modals or provide weak info (small card, generic text, slow AI).
    • Some users prefer Wikipedia-style or Arc/Zen-style modal “peek” rather than tiny cards.
  • Rollout is region‑limited; can be enabled via settings or about:config.

Relay & Email Masking

  • One camp calls relay domains “mostly useless” due to increasing blocking by sites.
  • Others report high success rates, hundreds of masks in use, and consider even partial coverage worth the cost.
  • Some use personal domains or Fastmail wildcards as more reliable alternatives; blocking is often treated as a red flag about the service itself.

Performance, Memory, and Diagnostics

  • Several reports of large memory leaks (8–15+ GB) and system lockups, especially left overnight.
  • Suggestions:
    • Use about:processes, about:memory, about:performance and OS task manager to identify offending tabs/sites.
    • Suspect particular web apps (e.g., Jenkins, Google tools) or extensions, especially YouTube or Electron apps.
    • Check network issues (e.g., IPv6) and consider that some OOM problems come from distro package updates + forced restarts.
  • Disagreement over whether new AI features materially affect performance; at least one confirmed regression was fixed pre‑wide rollout.

Direction, AI Fatigue & UX

  • Widespread frustration with “AI everywhere”; many users disable all AI except translation.
  • Complaints that Firefox focuses on features (AI, new‑tab recommendations, link previews) instead of:
    • Core performance and memory robustness.
    • Web compatibility and JS/HTML engine speed vs. Chromium.
    • Long‑standing issues (spellchecker quality, broken find, tab-loss bugs, security hardening).
  • Others appreciate tab groups and UI work; for some, tab groups finally make Firefox viable.
  • New‑tab content recommendations are compared to “portal” bloat but are easy to turn off; irritation that they sometimes reappear with new variants.

Platform & Privacy Oddities

  • macOS users criticize slow adoption of native behaviors (scrollbars, keychain, force‑click previews, fullscreen) and say Firefox often feels non‑native.
  • Debate over private windows blocking clipboard history:
    • One side values strict privacy.
    • Another wants an opt‑out because they rely on clipboard tools for client work.
    • Containers/temporary containers are suggested as alternative session‑isolation tools.
  • Some view Firefox as too eager to make non‑user‑initiated HTTP requests and telemetry by default, and wish for a mode with zero unsolicited prompts or network calls.

Europol said ChatControl doesn't go far enough; they want to retain data forever

Law Enforcement, Safety, and Distrust

  • Strong current of hostility toward police: claims that law enforcement is power-hungry, rarely helps victims, arrives too late, and often prefers easy prosecutions (including of victims) over real investigation.
  • Counterpoint: some commenters value living in “safe” countries and see law enforcement as necessary, but are answered with anecdotes of theft and burglary cases where police allegedly did nothing meaningful.
  • Underlying fear: giving police more powers (like ChatControl) will not improve everyday safety but will increase abuse and overreach.

Europol, ChatControl, and the Surveillance State

  • Many see Europol’s push for broad data access as a predictable bureaucratic power grab, drifting toward an EU-level NSA/FBI and a panopticon-like system.
  • Some argue that “more data” is not automatically helpful: it creates noise, false leads, and investigative overload; others respond that modern AI could make large-scale analysis more feasible.
  • Concern that terrorism/child protection narratives are being instrumentalized to normalize mass surveillance and long-term data retention.

Circumvention, Encryption, and Platform Control

  • Discussion on how ChatControl targets “publicly available” messengers, incentivizing private, self-hosted, or P2P encrypted tools (XMPP/OMEMO, Matrix, Tox).
  • Recognition that existing tech works but network effects and usability keep most people on mainstream apps.
  • Fear that states may respond by locking down devices (app-store control, “trusted” signatures, ISP-level filtering), though others insist such controls will be circumvented as usual.

Politicians, Exemptions, and Transparency

  • Strong sentiment that if surveillance is justified, it should apply first to elected officials, with lifelong retention and post-mortem disclosure.
  • Anger that politicians are reportedly exempt from ChatControl while also accused of quietly deleting politically sensitive communications.
  • Comparisons to Sweden’s radical transparency model provoke split reactions: some see it as working well; others find it intolerably invasive.

Legitimacy of Europol in Lawmaking

  • One side: police (including Europol) should only enforce laws; lobbying for new powers undermines separation of powers and risks a “police state.”
  • Other side: agencies must be allowed to express operational needs; democratic institutions still decide, so open debate is appropriate.
  • Broader anxiety that the EU steadily expands competencies, with Europol potentially evolving into a true federal police.

Free Speech, Misinformation, and EU Regulation

  • Disagreement over EU digital laws (DSA, etc.): some praise them alongside GDPR as necessary responses to disinformation, hate campaigns, and algorithm-driven radicalization.
  • Others insist censorship is worse than misinformation and fuels the rise of populist and far-right parties; they argue for combating falsehoods with verifiable facts instead.

Credibility, Sources, and Activism

  • Some argue the story is over-sensationalized, based on remarks from a single unnamed official; others respond that in such meetings, statements usually reflect institutional positions.
  • References to investigative pieces and NGO reports about lobbying (e.g., from child-protection NGOs) and calls to support digital-rights groups and tools tracking national positions on ChatControl.

Unfortunately, the ICEBlock app is activism theater

Critique of ICEBlock and “activism theater”

  • Some see the blog post as gatekeeping: attacking an imperfect but well‑intentioned effort and “letting the air out of the balloon.”
  • Others argue it’s responsible criticism: the app makes strong privacy/safety promises while its creator demonstrably lacks basic security/legal-threat knowledge, which can actively endanger users.
  • Analogies used: an unsafe gas mask or taxi driver who doesn’t know to turn headlights on—below a minimum bar, the tool is worse than useless.

Security, reliability, and abuse potential

  • Existing community alert networks reportedly see >90% false positives even with human verification; a public, unaudited app is viewed as even more vulnerable to panic, error, and malicious trolling.
  • Commenters sketch simple Sybil/fake‑report strategies and note that an adversarial state or trolls could flood the system.
  • Centralized infrastructure (Apple, identifiable traffic) raises fears the app could be used to identify resisters, not protect them.

Debate over “activism theater”

  • Several argue US activism is largely symbolic: feel‑good actions by people who don’t understand power or institutions.
  • Others counter that “theater” historically shifts public opinion (e.g., sit‑ins) and is one of the few levers ordinary people have.

Is the app needed? Views on ICE

  • Pro‑app perspective:
    • ICE is described as behaving like secret police—masked, unmarked vans, car window smashing, raids outside courts, rapid transfers, and even deportations in defiance of court orders.
    • Immigration violations are civil; people (including citizens and legal residents) are being detained without meaningful due process. The app is likened to a smoke detector: an imperfect early warning in a dangerous environment.
  • Anti‑app / pro‑enforcement perspective:
    • Emphasis on sovereignty and rule of law: countries have a right to control borders; inconsistent enforcement undermines democracy and workers’ rights.
    • Some see the app as aiding illegal activity and obstructing a policy a president was explicitly elected to carry out.

Immigration system, ethics, and consequences

  • Many describe US immigration law as irrational, slow, and self‑contradictory, with people cycling documented→undocumented due to bureaucracy.
  • One side stresses humanitarian and economic catastrophe if millions of long‑settled people are expelled; the other stresses cultural cohesion, labor competition, and national responsibility.

Alternatives and “non‑theatrical” action

  • Suggestions include: focus on legal reform, easier paths to status, punishing employers of undocumented workers, and joining organizations that provide verified alerts and legal aid rather than relying on a fragile app.

Next.js is infuriating

Logging and observability pain points

  • Many agree with the article that just getting logs out of a production Next.js app—especially via middleware—is far harder than in typical back-end frameworks.
  • Debate centers on what “production-quality logging” means: some say stdout + a basic logger is fine; others insist it must include telemetry, rotation, structured logs, and integration with systems like Kibana/Datadog.
  • Next.js’s answer (OpenTelemetry + instrumentation.ts) is seen by critics as overkill and “one more heavy layer” when developers just want logger.info() to work; defenders argue OTEL is a sensible, vendor-neutral standard for distributed systems.
  • Several reports say OTEL + Pino in Next is brittle (dependency flags, import order, globals, experimental packages), reinforcing the sense that observability is a “two-problem” situation now.

Middleware, runtimes, and mental model confusion

  • A central complaint: Next.js “middleware” doesn’t behave like middleware in Express/Rails/Rack-style stacks. It’s a single edge hook, not a composable chain on the main server.
  • Official guidance to “combine multiple middlewares into one file” feels fundamentally wrong to those expecting conventional, pluggable middleware.
  • The edge vs Node vs SSR vs client execution model (plus React Server Components, streaming, and caching) is widely described as hard to reason about; people struggle to know where code runs and when.
  • Some say the article misunderstands these boundaries; others respond that if a seasoned dev can’t form a clear mental model, that’s a framework design failure, not “user error.”

Complexity, churn, and documentation

  • Many recall Next.js (with the Pages Router) as simple and effective; the App Router + RSC era is seen as a turning point into “resume‑driven” over‑engineering.
  • Frequent major versions, API shifts, and partially baked features (middleware, app router, RSC) create upgrade fear and make AI-generated examples unreliable.
  • Documentation is criticized as high-level and marketing-friendly, but thin on precise execution details, pitfalls, and non‑Vercel deployment nuances.

Vercel, lock-in, and motivations

  • Strong sentiment that Next.js’s rough edges (edge-only middleware, lack of simple logging, awkward self-hosting, image stack quirks) funnel teams toward Vercel’s platform.
  • Some frame this as deliberate vendor lock-in and “enshittification”; others counter that Vercel legitimately funds OSS and provides good DX, and that self-hosting Next is possible (e.g., via Docker/Kubernetes).
  • There’s broader worry that React’s official endorsement of Next has effectively “captured” the React ecosystem for a single commercial actor.

Comparisons and alternatives

  • Multiple people state they’ve migrated away from Next to:
    • React Router v7 / “framework mode” (ex‑Remix)
    • Vite + React + explicit API servers
    • Astro (SSG + islands)
    • SvelteKit, Nuxt, SolidStart, Hono/HonoX, Fresh (Deno)
    • Inertia.js with Laravel/Rails/Adonis, or plain Django/Rails/Laravel + HTMX/Alpine/Datastar
  • Many praise these for simpler mental models, explicit server/client separation, or more conventional middleware and logging stories.

Broader ecosystem criticism

  • Thread repeatedly zooms out to critique modern JS/TS and “full-stack React” culture: too many layers, fast-breaking APIs, marketing-driven design, and frameworks optimized for e‑commerce/landing pages rather than complex apps.
  • Several back-end and veteran web devs say they’re retreating to “boring tech” (Rails, Django, Spring, Phoenix, Go, plain HTML+CSS+minimal JS) for long‑lived, maintainable systems.

Ask HN: Who is hiring? (September 2025)

Meta: Rules and Moderation of “Who Is Hiring” Threads

  • Moderators repeatedly detach job‑seeker complaints (e.g., “no reply to my applications”) from specific job posts, pointing to long‑standing rules that WIH threads are for listings and clarifying questions only.
  • Linked to many past explanations: HN doesn’t have resources to adjudicate disputes about hiring practices or to police whether companies are “really” hiring.
  • Some users feel the rules favor companies (“rules for job seekers, carte blanche for companies”); mods argue the rules also protect good actors and avoid flame wars they can’t moderate effectively.
  • One exchange involved a moderator mis-attributing a quote; they later corrected themselves and apologized, showing some transparency about moderation mistakes.

Ghost Jobs, Repeated Ads, and Skepticism

  • Multiple commenters note seeing the same companies post identical roles month after month, sometimes for years, with little visible headcount change.
  • This fuels suspicion that some listings are “ghost jobs” or long‑running candidate collection funnels. Users ask why such companies aren’t blocked or flagged.
  • Moderation response: some firms are genuinely always hiring; distinguishing bad faith from high growth is infeasible without intrusive verification.
  • A few users propose “let the market decide” by allowing public call‑outs in-thread, but moderators say such a rating system would itself need heavy governance and HN is not positioned to provide that.

Remote Work, Location and Compensation Issues

  • Many clarifying questions center on whether “remote” means worldwide versus limited regions, and whether salary is localized (e.g., Zurich vs. Munich, US vs. EU).
  • Some companies explicitly state EU/UK/EEA‑only or US‑only, or that they don’t sponsor visas; others are pressed to clarify mismatches between “remote (worldwide)” in the HN post and “US only” on their ATS pages.
  • A few threads touch on fairness: one commenter challenges location-adjusted pay as perpetuating low wages in cheaper regions.

Candidate Experience and Communication

  • Several users report applying (sometimes multiple times) to the same employers (e.g., education platforms, AI startups) without any response, questioning whether applications are even read.
  • In one notable case, a candidate describes progressing through multiple interview stages, discussing comp and start date, then being silently dropped; they still recommend the company but criticize the lack of closure.
  • Some hiring managers respond directly, inviting follow‑up by email and promising to “read all resumes,” or quickly fixing broken email addresses / job links when applicants point them out.

Product and Company Feedback

  • Scattered comments express strong enthusiasm for specific products (e.g., trail apps, analytics platforms, captcha alternatives, education sites), sometimes saying the product culture inferred from small UX touches (like a cookie banner) motivated them to apply.
  • Others report minor technical issues with careers sites (JS errors, broken forms, unclear submission confirmations) and are generally met with quick acknowledgments and fixes.

Ask HN: Who wants to be hired? (September 2025)

Geography & Work Setup

  • Very globally distributed: heavy representation from US, Canada, UK/EU, India, LatAm, plus Africa, Middle East, and APAC.
  • Strong bias toward remote: many insist on fully remote; some open to hybrid or specific cities; a minority prefer on-site.
  • A number limit relocation (e.g., within EU, specific countries or states); others are explicitly relocation-friendly, often with existing visas/PR.

Roles & Seniority

  • Wide range from interns/new grads and juniors to staff, principal, directors, and ex-CTO/founders.
  • Common engineering roles:
    • Backend / platform / distributed systems and infra.
    • Full‑stack web with a front‑end or backend lean.
    • Data engineering, ML/AI engineering, and data science.
    • Embedded, firmware, robotics, real‑time and safety‑critical systems.
    • Mobile (iOS/Android/Flutter) and game/graphics engineers.
  • Many are comfortable as early founding engineers, tech leads, or fractional CTOs; several explicitly seek 0→1 product work or small, fast‑moving teams.

Technologies & Domains

  • Backend stacks: Python, Go, TypeScript/Node, Java, C#/.NET, Ruby on Rails, Elixir; strong presence of C/C++ and Rust for systems work.
  • Frontend: React/Next.js, Vue, Svelte, Angular, HTMX, Tailwind, design systems, accessibility.
  • Infra/DevOps: AWS/GCP/Azure, Kubernetes, Terraform, CI/CD, observability, SRE/Platform roles.
  • Specialized niches include: GIS/airspace, compilers, DSP/audio, graphics/WebGL/WebGPU, XR/visionOS, fintech, legal tech, healthcare, embedded security, HFT, robotics, and bioinformatics.

AI/ML & Data Focus

  • Significant cluster focused on LLMs and agents: RAG systems, fine‑tuning, MCP, LangChain/LangGraph, evaluation, AI infra and orchestration.
  • Others emphasize traditional ML (computer vision, NLP, reinforcement learning, scientific computing) or data platforms (Spark/Flink, dbt, Snowflake/BigQuery, Kafka).
  • Several describe concrete AI products built (radiology, legal drafting, email workflows, document analysis, tutoring, trading, etc.).

Non-Engineering & Hybrid Roles

  • Product managers (including very senior and growth‑oriented), product‑minded engineers, technical founders, and strategy/architecture consultants.
  • UX/UI and product designers, brand designers, creative technologists, motion/3D designers.
  • QA automation, DevRel, security/pen‑testing, AML/compliance analytics, and technical marketing.

Work Style & Preferences

  • Many stress: autonomy, high trust, talking to users, shipping quickly, and reliability in production.
  • Multiple people note long remote histories and comfort with async, cross‑time‑zone collaboration.
  • A few mention difficulty getting past automated CV/AI filters and explicitly invite direct human contact.