Hacker News, Distilled

AI powered summaries for selected HN discussions.

Page 498 of 546

Northeastern's redesign of the CS curriculum

Overall Reaction

  • Many alumni and commenters see the change as “the end of an era” and a downgrade from a uniquely strong curriculum to something more conventional and mediocre.
  • Others support the move, arguing the old sequence had too much delayed gratification and was misaligned with Northeastern’s experiential, industry-oriented identity.

Value of the Racket/Fundies Curriculum

  • Widely praised for teaching program design, data reasoning, and abstraction rather than just syntax.
  • Racket’s staged “teaching languages” and DrRacket tooling are described as unusually well-suited for beginners, letting them focus on concepts without incidental complexity.
  • Some say it helped level the playing field for students without prior programming experience and produced graduates who can work effectively in any language.

Arguments for Switching to Python / Practical Focus

  • Supporters say intro courses should first “get students coding” in a widely used language; Python is approachable, useful for many domains, and aligns with co-op and employer expectations.
  • Some see this as better for non-CS majors and for students motivated by direct applicability and internships.

Teaching Languages: Pedagogy vs Industry Pressure

  • Several argue intro languages should be designed for pedagogy, not industry, citing calls for purpose-built teaching languages.
  • Others think that’s unrealistic given employer influence, large applicant pools, and tech companies funding specific language curricula in schools.
  • Pyret (a pedagogical language from the same research group) is mentioned as a possible successor to Racket that may preserve some of the old strengths.

Fundamentals vs Job Skills

  • Strong thread emphasizing CS as a theoretical discipline (algorithms, automata, computability, OS, architecture, databases) distinct from software engineering and tool training.
  • Others complain that graduates often lack practical exposure to tools like git, SQL, and modern stacks, arguing universities should include at least minimal job training.

Impact of LLMs

  • Some argue LLMs make fundamentals more important, since models can handle surface-level Python but not deep understanding.
  • Others observe students already pasting in LLM-generated code they don’t understand, worsening shallow learning.

Object-Oriented Design and Design Patterns

  • Debate over whether OO and Java-based design patterns are still “fundamental.”
  • Critics see classic OO patterns as dated workarounds and not core CS; supporters say OO concepts (encapsulation, polymorphism, interfaces) remain pervasive enough to require explicit teaching.

Jobs, Rigor, and Weed‑Out Courses

  • One subthread claims there is effectively no robust job market for grads outside a few top programs; others strongly dispute this.
  • Discussion of weed‑out courses: some defend early rigor to filter and raise standards; others see this as harmful and misaligned with high tuition and access goals.

Intro CS for Majors vs Non‑Majors

  • Multiple comments suggest separate tracks: rigorous, math-heavy CS for majors and practical programming/data courses (often in Python) for other disciplines.
  • Some universities already do this; cost and staffing are cited as barriers elsewhere.

Unclear / Open Questions

  • Unclear how much of Northeastern’s redesign is about language choice vs deeper changes (e.g., easing difficulty, allowing AP bypass, removing team/code‑swap projects).
  • Long-term effects on graduate quality, equity for less-prepared students, and PL research culture at the school remain debated and unresolved.

I got OpenTelemetry to work. But why was it so complicated?

Overall sentiment

  • Many commenters find OpenTelemetry (OTel) powerful in theory but unnecessarily complex in practice.
  • Strong split: some see it as the essential future standard for observability; others consider it over‑engineered “enterprise” machinery not yet ready for broad production use.

Complexity, ergonomics, and docs

  • Common complaints: high conceptual “floor”, lots of abstraction/indirection, vague and inconsistent terminology (e.g., what “trace” means), and poor discoverability in docs.
  • SDKs are seen as especially heavy in Go, JS, Rust, C++, with multiple packages/crates and sparse examples.
  • Auto‑instrumentation works “magically” when supported, but often breaks with newer framework versions or nonstandard setups; fallback to manual wiring is painful.
  • Docs tend to jump straight to full multi‑signal, multi‑service stacks (often on Kubernetes), instead of starting with “send one metric/trace.”

Maturity and performance

  • Tracing is widely viewed as the most mature and compelling part of OTel; metrics and logs are described as young, rough, or “garbage” in some languages.
  • Performance concerns: significantly higher CPU overhead compared to StatsD/Prometheus in some Node/JS setups; agents for proprietary APMs can introduce latency and heisenbugs.
  • Some report backend or vendor limits (e.g., span count caps, throttling), and note silent failures and unclear error feedback.

Vendors, lock‑in, and interoperability

  • Goal: one open spec and data model so instrumentation isn’t tied to a single vendor SDK, making it easier to switch backends (Datadog, New Relic, Grafana, Honeycomb, AWS X-Ray, etc.).
  • Skeptics argue this portability is overstated (likened to “standard SQL” portability) and that most teams have more urgent problems than hypothetical future migrations.
  • Some vendors ingest OTel but still push proprietary agents/SDKs, maintaining lock‑in on the sending side.

Tooling, deployment, and local dev

  • Collectors and full stacks (collector + Tempo/Jaeger + Prometheus/Grafana) are seen as heavy, especially for small apps and local development.
  • Others highlight easier paths: single‑binary or single‑compose backends (e.g., all‑in‑one OTel backends, Jaeger, OpenObserve, SigNoz), operators for Kubernetes, and language‑specific scaffolding or frameworks (.NET Aspire, k8s operators, custom starter repos).
  • A recurring pattern: people end up using OTel mainly for traces, keeping existing solutions for metrics/logs.

Alternatives and partial adoption

  • Many suggest simpler stacks for small or brownfield systems: Prometheus for metrics, Tempo/Jaeger/Sentry/Skywalking for traces, Loki/syslog for logs, or even homegrown metrics via logs.
  • Several report abandoning full OTel after struggling, but some are happy with a constrained subset: manual traces only, one backend, carefully‑chosen tooling.

Who Can Understand the Proof? A Window on Formalized Mathematics

Single Boolean Axiom, NAND, and the Dot Operator

  • Several comments clarify that the “single axiom” lives in an axiomatic, not truth-table, view of Boolean algebra.
  • In this framework, a single equational law on a binary operator can characterize Boolean algebras; NAND is one concrete model of such an operator.
  • The centered dot in the article is variously described as: notation for NAND, a generic binary operator satisfying the axiom, or something defined implicitly by that axiom.
  • There is discussion of prior work on minimal axiom systems for Boolean algebra and some doubt that this is entirely new.

Formalization, Automated Proofs, and LLMs

  • Many focus on formal proof systems (Lean, Metamath, Isabelle, etc.) and how set-theoretic or type-theoretic axioms are encoded.
  • Some see LLMs as promising “tactic engines” that can explore large proof spaces and hand results to proof checkers.
  • Others note that current LLMs hallucinate and that there isn’t yet enough formal-proof data to train robustly.
  • Ideas like Monte‑Carlo Tree Search–style exploration and Gröbner basis methods are mentioned as analogous strategies.

Foundations and Axioms

  • Debate over set theory vs. type theory as foundations; most practicing mathematicians don’t rely explicitly on ZFC’s axioms.
  • The axiom of choice is seen as powerful but problematic for constructive foundations.
  • Some commenters discuss seeking stronger axioms beyond ZFC to decide more arithmetic and computability questions.

Usefulness and Elegance of Proofs

  • Computer scientists often only care that a proof exists; mathematicians care about conceptual understanding, structure, and “why” a result holds.
  • Non‑elegant or computer-heavy proofs (e.g., large case analyses) are still valued for settling important conjectures, but many hope they eventually inspire simpler or more enlightening arguments.
  • A recurring theme: ugly automated proofs might be stepping stones to human‑friendly ones.

Reception of the Work and Meta‑Discussion

  • Reactions to the article and its author are mixed: some find the work rigorous and thought‑provoking; others see excessive self‑promotion or recycled ideas.
  • There is visible tension over repeated personality‑focused criticism versus on‑topic discussion of the mathematics and formal methods.

Narcolepsy is weird but I didn't notice

Personal experiences & symptom spectrum

  • Many commenters report narcolepsy, idiopathic hypersomnia, or similar unexplained hypersomnia; some after infections (COVID, flu) or a specific flu vaccine.
  • Symptoms described include: sudden overwhelming fatigue, inability to wake, “death sleep” with extreme heaviness, daily naps, falling asleep in cars or after meals, and variable levels of daytime function.
  • Several people mention comorbid or overlapping issues: ADHD, Tourette-like symptoms, migraines, sleep apnea, and chronic fatigue–like syndromes.
  • Some feel their condition is relatively mild or even a “superpower” (efficient naps); others describe it as life-ruining.

Cataplexy, sleep paralysis, and transition states

  • Multiple users distinguish cataplexy (muscle tone loss while conscious) from sleep paralysis (awakening without ability to move, often with chest pressure).
  • Experiences vary: some feel their body as “numb,” others as fully felt but immobile.
  • Hypnagogic and hypnopompic hallucinations (dreamlike imagery when falling asleep or waking) are common, sometimes pleasant, sometimes terrifying.
  • Several non-narcoleptic readers report dreaming “before” or “right after” sleep and previously assumed this was normal.

Diagnosis challenges and debates over “normal”

  • There is broad frustration with the multiple sleep latency test: uncomfortable lab setting, poor first-night sleep, high false negatives, and insurance resistance to repeat testing.
  • Some report long delays (years) between symptom onset and diagnosis, and frequent dismissal as laziness or lack of willpower.
  • Others note that hypnagogic imagery and short naps with REM can occur in healthy people; the boundary between normal variation and disorder is seen as a spectrum and tied to life impact.
  • Concerns are raised that a formal narcolepsy label can threaten driving privileges even when attacks are predictable.

Treatments, medications, and costs

  • Stimulants (modafinil, methylphenidate, amphetamines) help some with alertness but not everyone; side effects include remaining “awake but exhausted” during crashes.
  • Sodium oxybate (Xyrem) is repeatedly described as dramatically improving nighttime sleep quality, daytime wakefulness, and cataplexy—though others worry about safety, dependence, off‑label use, and very high cost.
  • One commenter criticizes Xyrem pricing as unjustified for an old, simple molecule.
  • A new class of orexin agonists (e.g., TAK‑861) is noted as promising and more causally targeted but still in trials.
  • Other reported or suggested aids include CPAP/APAP for apnea, duloxetine, structured naps, non‑sleep deep rest, dietary timing and intolerances, and experimental supplements (e.g., hydrolyzed whey tryptophan, methylene blue), with mixed or anecdotal benefit.

Coping strategies and techniques

  • Multiple people independently discovered that focusing on moving a single finger or squeezing hands can break cataplexy or sleep paralysis episodes.
  • Others use eye-movement exercises, lucid-dreaming skills, or music and environmental adjustments to manage transitions into and out of sleep.
  • Despite hazards (e.g., collapsing while walking or in meetings), some learn to sense brief warning signs and sit or signal others before attacks.

Before Squid Game, there was Battle Royale

Genre lineage and influences

  • Many comments situate Squid Game and Battle Royale within a long “deadly game” lineage: Kaiji, Liar Game, Alice in Borderland, Danganronpa, Zero Escape, Saw, Cube, Running Man, The Long Walk, The Prize of Peril, The Most Dangerous Game, Death Race 2000, Lord of the Flies, and even Roman gladiators.
  • Separate “branches” are identified:
    • Government/propaganda deathsports (Battle Royale, Hunger Games).
    • Secret or corporate games exploiting debtors (Kaiji, Squid Game, Liar Game).

Comparing Squid Game, Battle Royale, Hunger Games, Kaiji

  • Several argue Squid Game is much closer to Kaiji than to Battle Royale: indebted adults voluntarily playing rigged games for cash, watched by wealthy voyeurs, often with explicit copies of specific game types.
  • Battle Royale is seen as structurally closer to Hunger Games: state-run spectacle, mass participation, public terror/propaganda, youth as expendable.
  • Others highlight aesthetic and tonal kinship between Squid Game and Battle Royale: surreal visuals, dark humor, ecstatic reactions to death, far bleaker than Hunger Games.

Themes: capitalism, authority, and debt

  • Battle Royale is framed as anti-authoritarian/anti-government (punishing juvenile delinquency, fascist continuity); Squid Game as anti-capitalist (debt, exploitation by the rich).
  • Debate over debt portrayal:
    • Some criticize Squid Game and similar works for focusing on gambling and “irresponsible” debt instead of structural debts (student loans, medical bills, usurious credit).
    • Others counter that the show already includes medical and business-debt motives, and that making it about U.S.-style student/medical debt would be culturally inaccurate for Korea.
  • Discussion about whether such media provoke real critique of capitalism or are quickly monetized and “defanged” by the same system (e.g., real-life game shows, merchandising).

Cultural and historical context

  • Japan: Battle Royale linked to anxiety over youth violence, school pressure, and post-bubble economic malaise in the 1990s.
  • Korea: high consumer and business debt, weaker bankruptcy protections, and single-payer healthcare shape why debts in Squid Game look different from U.S. problems.

Impact on games and media

  • Battle Royale is credited as a major inspiration for the “battle royale” video game genre (Arma mods → PUBG → Fortnite), plus numerous later films and shows.

Reception of Battle Royale and adaptations

  • Many call Battle Royale a masterpiece and “required viewing”; others see it as high-end exploitation cinema.
  • Multiple commenters find the novel deeper and more nuanced than the film, especially in character backstories and political worldbuilding.

Visualizing All ISBNs

Color and Accessibility of the Visualization

  • Several commenters with red‑green color blindness report the plot is hard or impossible to read.
  • Others (not color‑blind) say red, green, and some yellow/brownish pixels are clearly distinguishable.
  • Workarounds suggested: browser filters (hue‑rotate, saturate), switching the visualization mode, or using different color channels (e.g., blue instead of green).
  • Consensus: the current color scheme is not accessible for many color‑blind users.

What the ISBN Visualization Actually Shows

  • Each pixel aggregates many ISBNs; red vs green indicates whether Anna’s Archive has a file.
  • Some confusion about “more green” vs simple red/green; some see only binary colors, likely because ISBNs are allocated in blocks.
  • Debate over usefulness:
    • One side says ISBNs aren’t content‑hierarchical, so this doesn’t reveal much beyond allocation and coverage.
    • Others argue it still meaningfully shows how much of the global ISBN space the archive has touched.
  • Long sub‑thread on editions vs titles: ISBNs represent editions, so many dark pixels can correspond to content already archived under a different ISBN. Some see this as pedantic; others say edition differences can be important.

Ideas for Better Visualizations

  • Suggestions to use Hilbert or generalized space‑filling curves to keep neighboring ISBNs visually close and form “islands” by country/publisher.
  • Counter‑argument: such curves can create artificial “squares” that might mislead; simple stripe/snake layouts make country ranges easier to locate.
  • Several people propose LoC or Dewey‑based visualizations as more meaningful for subject browsing.

Legality, Copyright, and Data Use

  • Multiple comments emphasize the site operates in a legal gray/illegal zone due to large‑scale copyrighted book distribution.
  • One thread asks if downloading and reusing the ISBN dataset is legal; answers:
    • The archive explicitly encourages reuse, so personal risk is likely low.
    • Actual legality depends on jurisdiction and on how the source metadata was obtained, and is described as ambiguous.

Access Blocking and Network Workarounds

  • Many European users (especially in the Netherlands and UK) report DNS‑level blocking with mismatched or generic legal/sanctions error pages.
  • Some see ISP‑injected TLS certificates or redirects to “blocked domains” landing pages.
  • Common workaround: use alternative or self‑run DNS resolvers that query root servers instead of ISP forwarders; this restores access for several people.
  • Observers note that multiple major ISPs in one country appear to return the same “unavailable.for.legal.reasons” DNS response.

Bounty, Monero Payments, and Legitimacy

  • The post announces a time‑bound $10k bounty, payable in Monero (XMR), for improved visualizations.
  • One participant questions the use of a “drug‑coin” for seemingly legitimate work and wonders if it’s a scam.
  • Others explain Monero is used because of privacy/anonymity needs for activities likely to draw copyright enforcement; traditional banking would expose identities.
  • Some argue that privacy coins are crucial for preserving large shadow archives despite potential misuse for drugs or tax evasion.

Perceived Importance of Anna’s Archive

  • At least one commenter calls the archive a “wonder of the world,” arguing that if civilization collapsed, its survival would accelerate reconstruction.
  • This hypothetical is met with mild skepticism about whether such a scenario is desirable, but the underlying appreciation for the archive’s scope is clear.

A three month review of kagi search and the orion web browser (2024)

Perceived value and pricing

  • Many see $10/month as fair or “dirt cheap” given time saved and constant use; some compare it to everyday expenses (coffee, streaming).
  • Others say it feels expensive, especially outside high-wage countries or when added to many other subscriptions.
  • Debate over whether a lower price (e.g., ~$5) would massively grow adoption vs. belief that the main barrier is “free vs paid,” not $5 vs $10.
  • Some use Kagi Ultimate ($25) as a bundle for search + Claude/LLMs, replacing separate AI subscriptions.

Search quality vs alternatives

  • Repeated reports that Kagi surfaces relevant results faster, uses more of the query terms, and reduces ad/SEO spam compared to Google.
  • Some feel Kagi still drops terms and has drifted toward “implicit” behavior, requiring more quotes/intext.
  • For some queries, Kagi and Google both show similarly bad, spammy results, raising the question of whether “the internet is getting worse.”
  • DuckDuckGo works fine for some users; others say it’s weaker on local results and non‑English queries.

AI and assistant features

  • Opinions split: some love Quick Answer/summarization and the Assistant, finding them huge productivity boosts; others explicitly don’t want to pay for “AI stuff.”
  • Quick Answer via “?” is praised for concise, cited responses while remaining optional and unobtrusive.

International and local search

  • Mixed reports: some say Kagi works well in Dutch, Danish, Arabic, Thai, Serbian, and UK English; others highlight weak locality and regional behavior vs Google.
  • Local shopping and maps are common fallbacks to Google.

Ethical concerns about Yandex

  • Some users canceled because Kagi pays Yandex for index integration, seeing this as indirectly funding the Russian state amid the war in Ukraine.
  • Others argue boycotting based on tax flows is too indirect or overly political; countered by strong moral objections to doing any business that benefits Russia.

User controls, UX, and plans

  • Strong praise for site blocking/boosting and the “small web” lens.
  • 300-search metered plan causes anxiety; many recommend going straight to unlimited.
  • Positive feedback on Kagi’s responsive support and transparent changelog.
  • Some worry AI and side projects (e.g., merch) distract from core search and sustainable growth.

Orion browser feedback

  • Orion on iOS is appreciated for extension support (uBlock, Dark Reader).
  • Some report crashes and CPU/battery issues on macOS but praise quick bugfix responses.

41% of Employers Worldwide Say They'll Reduce Staff by 2030 Due to AI

Uncertainty and Methodology of the 41% Claim

  • Many see “41% of employers” as an essentially unknowable forecast; no one can predict 2030 hiring even within an order of magnitude.
  • Others note this comes from WEF’s Future of Jobs surveys, which regularly poll ~1,000 large employers and track expectations about automation, not literal counts of all employers.
  • Critiques: headline is clickbait; doesn’t say how much staff would be reduced; ignores that many surveyed firms may not even exist by 2030.
  • Some defend survey methods as standard sampling, not inherently meaningless, though past WEF predictions are treated skeptically.

Labor, Wages, Inequality, and Power

  • Strong concern that AI will be used as an excuse to cut staff and suppress or erode real wages (via raises below inflation).
  • Debate over real wage trends vs capital returns; several note stock market gains far outpacing wage growth since the late 1970s.
  • Threads highlight employer collusion, antitrust cases, and structural inequality; view that employers currently hold the upper hand and policy choices reinforce this.

How AI Is (and Isn’t) Changing Work Now

  • Concrete job impact examples: content writers, “strategy”/PowerPoint production, some junior coding tasks, basic scripting, paralegal/EA work, and filler/SEO/blogspam content.
  • Several report internal AI tools or ChatGPT/Copilot rollouts that quickly lost traction: useful for simple tasks, but weak or counterproductive for complex coding, testing, and legal work.
  • Others claim 2–3x personal productivity boosts in coding and documentation and expect to hire fewer juniors as a result.
  • In law and other high-touch domains, AI currently increases inbound work (fixing AI-generated errors) and augments support roles more than it replaces high-end professionals.

Executives, Managers, and “Bullshit Jobs”

  • Split views on who’s most at risk: some argue middle management and executives are prime automation targets; others say this class protects itself and fails upward.
  • Discussion of “bullshit jobs” and whether many eliminated roles are low-value filler vs legitimately providing value to employers and consumers.

Macroeconomic, Social, and Political Implications

  • Some expect AI-driven productivity to shrink headcount permanently; others predict more output and new work rather than net job loss.
  • Fears of technofeudalism, mass unemployment, social unrest, or Luddite-style backlash if there’s no safety net (e.g., UBI), though UBI is seen by some as unrealistic.
  • Demographic decline and resource limits are cited as additional pressures reducing long-run hiring growth.
  • Others think history suggests eventual rebalancing (e.g., new institutions like central banks; possible future UBI), but this is contested as “wishful thinking.”

New Jobs, Small Firms, and Optimistic Takes

  • Some see AI enabling leaner startups and small “boutique” firms that can challenge incumbents; examples include many new AI startups and AI-focused roles.
  • View that AI has “infinite” tech work to do and may ultimately lead to more, smaller organizations and higher specialization, though dependence on big-model providers is a concern.

TikTok tells staff impacted by wildfires to use sick hours if they can't work

Core controversy

  • Many see TikTok’s directive—use personal/sick days (PSSL) if you can’t work from home during wildfires—as callous and “evil,” especially when the LA office itself is closed and people may be evacuating.
  • Others argue a natural disaster disrupts business as well as workers; furloughs, layoffs, or unpaid leave are standard options, and employers are not strictly obliged to pay when work can’t be done.

What the policy actually does (unclear points)

  • Article text (as summarized in the thread):
    • If staff can WFH, they must log “natural disaster” in the RTO portal; those days are paid and reportedly don’t deduct from PSSL.
    • If they cannot WFH (evacuation, power/Wi-Fi loss), they’re told to use PSSL, which does reduce their limited 10 sick/personal days.
  • Several commenters note confusion: the headline suggests all wildfire days consume sick time; parts of the text suggest the “natural disaster” code creates extra paid days. Internal comms reportedly emphasize flexibility, but the article didn’t include that.

Ethics, loyalty, and management culture

  • Many argue humane leadership should proactively tell affected staff to prioritize safety and grant paid time off without using their own sick days.
  • Others stress that short-term paid disaster leave is good business: it builds loyalty, increases effort, and improves retention.
  • Some call the requirement to manage RTO portal settings during a crisis tone-deaf bureaucracy.

Broader US labor and global comparisons

  • Several note that limited PTO/sick time and using leave for disasters is common in the US, especially outside tech.
  • Comparisons:
    • Some companies reportedly offer generous support (paid time off, relocation stipends, hotel coverage in fires/war zones).
    • EU and Canada are described as having stronger protections and more vacation; US often trades higher tech salaries for weaker protections.
  • Debate over whether “importing Chinese companies” means importing harsher work norms; others argue US norms are already bad.

Labor protections, unions, and insurance

  • Calls for unionization and stronger government standards to prevent “minimal decency” employers.
  • Discussion of limited sick days, short-term disability, FMLA, and unemployment insurance; several describe these systems as slow, stingy, and denial-prone.

Surveillance and screenshots

  • After the leak, TikTok reportedly enabled Lark alerts when screenshots are taken.
  • Strong backlash: seen as petty micromanagement; discussion of watermarking, tracking, and trivial workarounds.

Predictions Scorecard, 2025 January 01

Prediction methodology & tone

  • Many readers find the prediction scheme (e.g., “NET20XX”) too loose, allowing wide time windows and post-hoc interpretation. Accusations of goalpost moving, especially on self‑driving and flying cars.
  • Others defend the approach as a counterweight to 2017‑era hype and executive overconfidence. What seems “obvious” now was not in 2018.
  • Several note the piece feels self-congratulatory and focused on proving past correctness rather than honestly reassessing errors.
  • A minority appreciate the detailed reasoning and annual self‑audit as intellectually valuable despite the style.

Self-driving cars and Waymo

  • Big dispute over whether current robo‑taxis mean previous “driverless taxi in a major US city” predictions should be counted as “hit” or “miss”.
  • Some argue limited-area, operator-assisted services with occasional remote help are still not “self-driving” in the originally understood sense (buy a car that drives anywhere, no human backup).
  • Others say that if operators rarely intervene (tens–hundreds of miles per intervention) and cars complete rides safely, this is practically self-driving.
  • Frequent claim that the article downplays Waymo’s progress, nitpicks rare failures, and ignores that some riders find it safer than humans.
  • Coverage and economics are major concerns: service still tiny relative to total miles driven; Alphabet’s modest investment vs. buybacks cited as evidence of perceived risk/limited upside.
  • Actual remote-intervention rate is unknown; commenters emphasize this makes strong claims (from either side) speculative.

LLMs, AI hype, and deep learning

  • Several think the article mischaracterizes LLMs as mere “lookup in weights”, ignoring clear evidence of novel reasoning and scenario handling. This undermines trust in its AI claims.
  • Others agree with its warning against “exponentialism” and the assumption that scaling deep learning alone will deliver everything.

Flying cars & eVTOL

  • Debate over whether high-end eVTOLs already satisfy “flying car for the wealthy” predictions.
  • Constraints highlighted: energy density, safety, maintenance, pilot skill, weather, noise, and lack of autorotation/glide for many eVTOL designs.
  • General consensus: demos and niche services are coming, but mass adoption remains unlikely or far off.

AI, jobs, and capital allocation

  • Some see current AI as unlikely to be the main driver of recent tech layoffs; macroeconomic and tax changes are blamed instead, with “AI” used as PR cover.
  • Others report real pressure on occupations like copywriting and foresee future displacement of drivers.
  • Tension between hype as useful risk-taking vs. hype as misallocation of capital and source of human misery (e.g., billions on robo‑taxis vs. social needs).

Other technologies & meta

  • Discussion of EV limits (recycling, insurance, grid capacity) and slower-than-hyped adoption.
  • Battery futures: solid‑state, grid-scale chemistries, hydrogen for aviation; recognition of hard physical constraints.
  • Several criticize the essay’s length and rambling structure; others see the background context as necessary to understand the critiques of hype.

Candy Crush, Tinder, MyFitnessPal: Apps hijacked to spy on location

Headline, culpability, and what’s actually new

  • Several commenters call the headline “hijacked” misleading: apps integrated tracking code deliberately and are accomplices, not victims.
  • The genuinely new point (for many) is that losing bidders in real‑time ad auctions also receive rich data from bid requests.

How location and identifiers are collected

  • Much of the dataset appears to use IP-based geolocation, not GPS; some argue this is less “direct” collection but still problematic.
  • Where fine‑grained GPS exists, users generally granted permissions via the OS; others note apps may fall back to IP geolocation when permission is denied.
  • Discussion of background app refresh on iOS/Android: plausible vector to regularly send identifiers to ad servers that then geolocate via IP.
  • Some suspect Google Mobile Services and ad SDKs can access more data than the host app’s explicit permissions suggest; whether this effectively bypasses permissions is debated and “unclear.”

Real‑time bidding and data firehose

  • RTB sends device/IP/location and context to many ad platforms for each impression; even non‑winning bidders can harvest data.
  • People note specialized firms exist mainly to “lose” auctions but keep the data, which violates ad platform terms but is reportedly underenforced.
  • Others add nuance: major exchanges throttle how many bid requests a low‑spend buyer sees; you don’t always get 100% of traffic.

Accuracy and granularity of location

  • IP geolocation accuracy varies widely by country, city, and ISP. Examples range from 30‑mile error to within a ZIP code or a neighborhood.
  • Even coarse data can reveal patterns: home/work, vacations, regular visits.

Mitigations and practical responses

  • Technical countermeasures mentioned:
    • Disabling background app refresh.
    • DNS‑level blocking (NextDNS, AdGuard), VPN with network‑wide adblock, on‑device blockers like 1Blocker.
  • Some users script checks against the leaked app list and migrate to alternatives (e.g., AntennaPod) or paid, ad‑free versions.

Advertising, capitalism, and consent

  • Long subthread debates whether advertising is inherently harmful vs. a neutral “vector” captured by greed.
  • Themes: manipulation without consent, psychological harm, distortion of markets vs. arguments that information and non‑surveillance ads can be legitimate.

Legal, regulatory, and societal context

  • FTC actions against location brokers are cited; in Europe such practices are described as largely illegal under GDPR.
  • Some note many people still dismiss privacy concerns with “nothing to hide,” making systemic change harder.

Celebrating the timeless allure of Tintin's aesthetics

Nostalgia and Aesthetics

  • Many recall Tintin as a formative childhood influence, discovered via school or local libraries, often alongside Asterix and other Franco‑Belgian comics.
  • Readers praise the “ligne claire” style, detailed backgrounds (e.g., the Luxor panels), warm color palettes, and the sense of a lived‑in but not grim world.
  • Several say Tintin’s non‑superhero, exploration‑focused adventures inspired curiosity about other cultures and travel.

Comparisons and Recommendations

  • Tintin is contrasted favorably with superhero comics of the same era.
  • Recommendations for similar or adjacent works: Asterix, Blake & Mortimer, Yoko Tsuno, Spirou, Lucky Luke, The Red Knight, and French kids’ books like “Le Petit Nicolas.”
  • The 1990s animated series evokes strong nostalgia; some like the opening and score, others find the animation only average and prefer the comics.

Copyright, Public Domain, and AI

  • Clarification that only early Tintin material (notably “Tintin in the Land of the Soviets”) is in the US public domain; in Europe, copyright runs until 2053 (death + 70).
  • The estate is described as extremely aggressive on enforcement, even against fan works; this makes some commenters unsympathetic to efforts to keep AI from training on Tintin.
  • Debate over whether it’s desirable or even coherent to allow public‑domain status while restricting derivative or AI uses.
  • One side: public domain must allow broad reuse, including organized and commercial exploitation; style and characters inevitably become shared cultural property.
  • Other side: concern about corporate or AI “appropriation” cheapening cultural heritage, destroying emotional value, and flooding culture with derivative “slop.”
  • Broader philosophical argument branches into capitalism, property, and whether copyright or new “moral rights”–like frameworks should limit how iconic works are reused.

Representation, Racism, and Gender

  • Early albums (“Soviets,” “Congo”) are widely criticized as racist and recommended to be skipped for children; others defend reading them as absurd, context‑bound humor.
  • Even later stories are noted for colonial stereotypes, “white savior” dynamics, caricatured non‑white characters, and near‑absence of women.
  • Some argue the series still holds up if read with historical context; others stress these issues as reasons to pre‑screen for kids.

Tintin Today

  • Parents are actively introducing Tintin (comics and shows) to their children, often alongside Asterix, and share links to online scans and videos.
  • Language‑learning angle: several learned or refreshed French (and other languages) via Tintin and related media.
  • Mentions of a Tintin museum and a documentary, plus various fan works, parodies, and even crude dubs, show an ongoing, diverse fan culture.

Lines of code that beat A/B testing (2012)

Multi-armed bandits vs. A/B testing

  • MAB (multi-armed bandits) are praised for maximizing reward during experiments, especially for simple, immediate metrics like clicks.
  • Supporters say MAB “beats” classic A/B by shifting traffic toward better variants earlier and generalizing well to many variants.
  • Critics argue the blog post overclaims: statistical significance requirements don’t change, and simple, well-run A/B can be equally effective for many real-world needs.
  • Several people note MAB is best seen as an optimization tool; A/B is better as a learning tool to estimate true effects.

Implementation & infrastructure complexity

  • Biggest cost is not the algorithm but state management and online feedback loops: extra DB columns, performance concerns, outcome computation.
  • Simple client-side randomization + logging is often much easier than wiring online reward tracking for MAB.
  • Consistent user assignment (stickiness) complicates both A/B and MAB; hashing, seeding, and feature flags are common tools, with pitfalls around non‑uniformity and ID assumptions.

Statistics, significance, and traffic constraints

  • Many sites lack enough traffic to reach significance in reasonable time, especially with >2 variants.
  • Some argue point estimates can be enough to choose a version when costs are similar, even without formal significance.
  • Others stress that if you care about effect size and significance, the article’s approach is insufficient.

Dynamic environments & bias risks

  • Standard MAB assumes static reward rates; in e‑commerce, conversions change with time of day, sales, device mix, etc.
  • Time-varying or delayed rewards can cause MAB to lock onto the wrong variant; forgetting factors and more advanced methods exist but add complexity.
  • MAB can amplify biases from bugs, eligibility issues, caching discrepancies, or mis-specified metrics, potentially converging on very bad experiences.

User experience and ethics

  • Constantly changing variants can harm UX, support workflows, and even safety (e.g., UI changes while driving).
  • Drug-trial analogy is debated: control groups “miss out” on benefits but are also protected from unknown harms.

Real-world practice & politics

  • Many organizations use A/B mostly for gradual rollouts, safety checks, and political cover rather than pure optimization.
  • There is widespread concern about “data-driven” rhetoric masking gut-driven or statistically sloppy decisions.

Disappointed with the TVs at CES 2025

Remote and Input UX Frustrations

  • Many complain about removal or downgrading of dedicated buttons (input, pause, play, numbers, mute, transport controls).
  • LG’s scroll-wheel “magic” remote is widely criticized: pause depends on app focus and often triggers wrong actions (subtitles, seeking).
  • Some newer Samsung remotes reportedly lack an input button; inputs are hidden in animated menus that reorder based on HDMI state.
  • Touch or gyro remotes (including some Apple TV generations) are seen as error-prone compared to simple button remotes.
  • A minority argue that learning long-press/home shortcuts is acceptable, but most see this as needless friction.

Desire for “Dumb” Displays and External Boxes

  • Strong demand for large, high-quality “dumb” TVs or just-big-monitors: good panels, multiple inputs, basic picture controls, no apps.
  • Common pattern: never connect the TV to the internet and use Apple TV, Roku, Chromecast, Shield, or a Pi instead.
  • Some cite commercial/signage displays or niche “non-smart” brands as imperfect but closer options.

Smart TV Enshittification: Ads, Tracking, and Control

  • Complaints about ad-filled home screens, auto-playing branded channels, and content tracking (ACR).
  • Several note that “smart” features subsidize panel prices, but feel that privacy and UX costs are too high.
  • Some TVs allow opting out or partially disabling smart features (e.g., Sony Bravia, buried options on Samsung/LG), but knowledge is rare.

HDMI, CEC, and Reliability Issues

  • HDMI CEC is described as flaky: devices randomly steal focus, fail to power on/off, or put consoles back to sleep.
  • Some Samsung models reportedly mishandle standard HDMI signals (e.g., laptops, Steam Deck) unless features like “Input Signal Plus” are disabled.

Alternatives: Monitors and Projectors

  • TVs remain cheaper per inch than monitors, but monitors generally offer better color accuracy, refresh, input lag, and ports.
  • Several use projectors instead of TVs, valuing immersion and the absence of a large black rectangle; picture quality trade-offs are accepted in dark rooms.

User Experience and Nontechnical Users

  • Input switching is seen as a major pain point for nontechnical users; confusing UX arguably helped streaming “win” over cable.
  • Some argue that remote and menu design now optimizes ad/engagement metrics rather than GOMS-style efficiency or usability.

AI on TVs: Skepticism and Niche Wishes

  • Strong pushback against paying subscriptions for LLM assistants on TVs for simple recommendations.
  • Fear of upsells, nag screens, and dark patterns if AI is embedded.
  • A few constructive ideas appear (context-aware Q&A about a show, spoiler-avoiding sports info), but commenters note current LLMs struggle with precise media recall.

Pushing the whole company into the past on purpose

Interpretation of the “fifty years” remark

  • Several readers link the closing joke (“sent it back fifty years”) to the company’s recent policy changes: ending or weakening fact-checking and explicitly allowing certain slurs and claims of mental illness about queer people.
  • Others note the line is partly a political jab layered on top of a genuine technical story about time smearing.

Debate over platform’s new hate‑speech policy

  • One commenter cites the policy language: it generally bans attacks based on mental characteristics, but explicitly allows allegations of mental illness or abnormality when based on gender or sexual orientation.
  • Some argue this is regressive and hostile to queer people; at least one former employee says they now “root for [the company’s] complete destruction.”
  • Others see the change as a return toward older “centrist” norms or greater free-speech tolerance.

Gender dysphoria, mental illness, and medical coverage

  • Strong disagreement on whether labeling queer or trans people as mentally ill is hateful or legitimate debate.
  • One side emphasizes decades of research and lived experience, framing gender dysphoria as a condition where gender-affirming care (especially HRT) is effective and often life‑saving, with relatively low cost and low regret.
  • Others compare transition treatments to cosmetic surgery and question why they should be publicly funded or described as “life‑saving.”
  • Further sub‑threads debate pregnancy-as-condition vs. illness, pro‑natalist policy motives, and whether credentials matter to be correct.

Free speech, censorship, and political alignment

  • Some view the new policy as “sending the company back 50 years” to a time of more open speech.
  • Others argue that equating current moderation with “censorship” ignores historical state censorship under past regimes.
  • A long tangent covers US politics: shifts in Gen Z voting patterns, Trump’s support, suburban vs. rural voting power, and claims about oligarchy, Section 230 leverage, and antitrust as structural problems.

Technical discussion: time smearing and clock synchronization

  • Separate from the politics, several comments discuss time smearing for leap seconds.
  • They critique crude approaches like watch -n1 date for millisecond accuracy, discuss sampling effects, and suggest better tools (NTP queries, clockdiff, custom programs that sync on second boundaries).
  • There is mention of different smear windows (e.g., 24 hours) and trade‑offs for NTP convergence.

Miscellaneous

  • Brief side notes on studio/GPS clocks, orange LED wall clocks, cost of broadcast displays, and one commenter’s wistful wish to work on similar “amazing” technical problems.

Soldering the Tek way

Soldering irons, tips, and heat transfer

  • Several posts focus on difficulty tinning and maintaining tips, especially once the iron plating oxidizes.
  • Suggestions include: ensuring adequate power (underpowered irons struggle more than overheated ones), using genuine tips, keeping a solder layer on the tip when powering down, and occasionally carefully abrading burnt crud (e.g., screwdriver edge or fine sandpaper) to expose plating before re-tinning.
  • Copper tips are debated: some see them as a workaround, others argue they worsen heat-loss issues on weak irons.
  • Temperature equivalence is stressed: “400°C” on a cheap station is not the same as on a Metcal/JBC due to power delivery and recovery.

Lead-free vs leaded solder (usability)

  • Many say modern lead-free (e.g., SAC alloys, SnCuNiGe) is “fine” if you:
    • Use a higher temperature (often 10–30°C above leaded),
    • Add plenty of flux (often extra gel/paste),
    • Use good quality solder (Kester, Chipquik, Felder, etc.).
  • Others still revert to leaded for difficult or repetitive work, saying it flows cleaner and faster.
  • There’s disagreement on recommended temps (some cite ~300–320°C, others 350–400°C) and on how bad cheap lead-free wire is.

Health, fumes, and safety

  • Consensus: for hobbyists, primary risk is flux fumes and ingesting/inhailing particulates, not lead vapor (lead’s boiling point is far above solder temps; vapor pressure is tiny).
  • Mitigations: fume extraction, ventilation, not touching your face, washing hands after soldering, and keeping the workspace clean.
  • Lead-free is preferred by some around children; others argue leaded is acceptable with precautions.
  • Rosin flux is noted as a sensitizer; occasional soldering without extraction is likely low risk, but frequent work should use extraction.
  • One comment mentions nutritional supplements for heavy-metal removal without detailed evidence; overall efficacy is unclear.

Tools and techniques

  • High-performance stations (Metcal induction, JBC cartridge systems, Pinecil) are praised for rapid heat delivery and stability; many describe a “night and day” improvement over budget irons.
  • Detailed technique advice: preheat boards (hotplate, hot-air, or heater), choose larger tips for large copper pours, add flux generously, clean joints with isopropyl alcohol, and avoid “feeding solder to the iron” instead of the joint.
  • Mixing leaded solder onto lead-free joints is called problematic by some (reliability concerns) and acceptable by others if old solder is mostly removed—outcome is disputed.

Alternatives, training, and miscellany

  • Conductive glues, crimps, and wire-wrap are mentioned as alternatives but seen as niche, bulkier, or less reliable than solder.
  • Several references to formal high-reliability/military soldering standards emphasize cleaning, inspection, and strict geometry of joints.
  • Tektronix historical methods (ceramic terminal strips with silver, silver-bearing solder) are admired for robustness and beauty.
  • Side threads cover solder/“sodder” pronunciation differences and nostalgia for learning on old Weller guns.

Ask HN: A friend has brain cancer: any bio hacks that worked?

Standard Treatments & Prognosis

  • GBM is described as highly lethal; typical survival 12–24 months even with current best care.
  • Common “state of the art” components: surgery (often awake craniotomy), radiation, temozolomide chemotherapy, Tumor Treating Fields/Optune devices, monoclonal antibodies; some mention high‑dose vitamin C and melatonin as possible adjuncts.
  • Several posters stress that no existing regimen is curative; treatments are probabilistic and mainly extend or improve quality of life.
  • Some warn against overtreatment and emphasize trade‑offs: more months vs more disability and side effects.
  • Multiple people urge focusing on clinical trials (immunotherapy, CAR‑T, vaccines, ultrasound BBB opening, mRNA and dendritic cell vaccines), genetic sequencing of tumors, and major cancer centers.

Diet, Fasting & Metabolic Approaches

  • Many highlight ketogenic or very low‑carb diets, intermittent fasting, and prolonged fasting, citing:
    • Hypothesis that many cancers are glucose‑dependent.
    • Preclinical and early clinical work on keto, caloric restriction, autophagy, and “press‑pulse” metabolic strategies.
  • Others push back:
    • Body maintains glucose even in ketosis; “starving” cancer via diet alone is doubted.
    • Some research suggests keto might promote metastasis in some contexts.
    • Consensus in thread: diet may support treatment and tolerance to chemo/radiation but is unlikely to “stop” cancer by itself.
  • Fasting is discussed as potentially making chemo more tolerable and modulating immunity, but need for more controlled trials is repeated.

Fringe / Alternative / Experimental Ideas

  • Mentioned: ivermectin/fenbendazole, bloodroot/black salve, large herbal protocols, high‑dose supplements, cannabis, hyperthermia, rotating magnets/oscillating magnetic fields, bacterial and viral therapies (including Zika), Hymecromone, mTOR/rapamycin, psychedelics, ayurvedic and yogic regimens.
  • Some posters share personal or family anecdotes of benefit; others share anecdotes of no effect or harm.
  • There is strong skepticism and anger around ivermectin, bloodroot, and non‑evidence‑based claims; several call them misinformation or dangerous.
  • Recurrent theme: if such methods clearly worked, they’d likely already be in standard oncology; most cited papers are preclinical, small, or “promising but unproven.”

Quality of Life, Agency & Ethics of Advice

  • Many emphasize that the most reliable “hack” is to be present: help with logistics, reduce stress, enable vacations or bucket‑list experiences, support addiction risks, and consider end‑of‑life psychological support (including supervised psychedelic therapy).
  • Heated debate over “false hope” vs respecting patient agency:
    • One camp argues sharing unproven hacks burdens patients and delays acceptance.
    • The other argues that, in a terminal setting, low‑cost moonshots plus clear expectations are reasonable, as long as standard care and oncologists guide decisions.
  • Repeated advice: any nonstandard intervention should be discussed with the treating oncologist.

How to delete your Facebook account

Reasons for deleting or avoiding Facebook now

  • Some deleted accounts in direct response to recent policy changes around AI tools and moderation, fearing future misuse of their likeness and looser controls on harmful content.
  • Others say deletion is long overdue given past behavior (shadow profiles, past censorship, security issues).
  • A few argue the timing is odd: they feel the right time to leave was when Facebook tightened censorship (e.g., around COVID), not now as it claims to loosen it.

Free speech, misinformation, and moderation

  • One camp stresses free speech as paramount, warning that censorship can resemble authoritarian controls and should not be replicated in the US.
  • Another camp argues misinformation demonstrably causes harm (Iraq, Jan 6, COVID) and that platforms must curb lies and hate.
  • Several see the issue as highly subjective and worry about unaccountable corporate gatekeepers deciding “truth.”
  • Some propose a “middle ground,” e.g., protecting US users’ speech but limiting foreign state-backed influence.

Meta’s new hate speech / harassment rules

  • New guidelines allowing certain insults when tied to gender or sexual orientation (e.g., about mental illness, “weird”) are seen by some as explicitly singling out LGBTQ+ people as fair targets.
  • Critics frame this as a rollback of protections, evidence of rising homophobia, and a sign of deeper political alignment.
  • Defenders say it’s part of unwinding overreach and that policy teams need time to “open back up.”

Account deletion, recreation, and data control

  • Multiple users report that after hard deletion they were later unable to create new accounts, even for legitimate business needs, sometimes after ID requests and with no appeal.
  • Others describe being locked out unless they upload passports or phone numbers, with weak or non-existent support.
  • Some fear deleting access while Meta still holds their data; others suggest using legal routes (EU rights, CCPA) but experiences are mixed.

Ongoing dependencies and workarounds

  • Facebook Marketplace and login integration with gyms/local businesses are major reasons people keep dormant accounts.
  • Some create minimally populated or obviously fake profiles solely for Marketplace, effectively “poisoning the well” while exploiting utility.

Psychological and social effects

  • Several describe significant mental health benefits from quitting Facebook/Instagram: less depression, less exposure to distorted “reality,” and fewer algorithmic pressures.
  • A broader critique: human brains aren’t built to process mass-scale social feeds, making large platforms “cesspits” that amplify the worst of humanity.

Why is my CPU usage always 100%?

Hardware timer bug and workaround

  • Discussion centers on a buggy Marvell timer used in an old 32-bit SoC (e.g., Chumby-era hardware) that misreports time and thus CPU usage.
  • The timer uses a capture register; a write-then-delay-then-read sequence is required, but documentation is vague.
  • Vendor docs mention the request taking “up to three timer clock cycles” and possibly longer on a “slow clock,” implying the need for multiple reads or a delay.
  • Explanation of correct timer design: either a synchronous counter, or a capture register with guaranteed completion or a “valid” flag; this hardware apparently got that wrong.

Debate over fix strategies and portability

  • Existing forks read the capture register 3–5 times; the article chose 4 as a compromise and to match vendor practice.
  • Some argue this isn’t portable across revisions, speeds, or different SoCs; others note this is already extremely hardware-specific code, so portability is limited anyway.
  • Multiple reads may be better than a CPU-only delay because register reads are tied to the timer/peripheral clock, not CPU clock.
  • An alternative proposed: bypass capture and repeatedly read the timer directly until two consecutive reads match; simple, fast, and common for counters with modest frequency.

CPU utilization, idling, and scheduling

  • Clarification that “CPU at 100%” is only desirable when there is real work; otherwise it’s just a heater.
  • Modern systems use HLT/idle instructions, interrupts, and timer coalescing so CPUs can sleep between bursts of work.
  • Multi-core and heterogeneous-core designs allow some cores to be fully off while others handle background tasks; “race to idle” is preferred over running slowly at partial load.

Resource usage, Electron, and “wasted” memory

  • Tangent on the misuse of “unused memory is wasted memory” to justify heavy apps; OS caches vs genuine bloat are distinguished.
  • Debate over Electron: some say its overhead is overblown compared to browsers; others stress it is literally another browser instance and costly on low-RAM systems.
  • Strong criticism of modern web-stacked UIs vs lean native toolkits, especially for always-on tray apps.

Misreporting, debugging, and war stories

  • Several anecdotes about misinterpreting “System Idle” as a real process, Windows and HDD/NVMe busy indicators being wrong, and CPU or network bugs being blamed on hardware.
  • Stories of badly written software (busy loops instead of sleep, synchronized servlets, overcomplicated Java workflows) causing high load and misguided hardware upgrades.
  • Some note that “cosmetic” counter bugs can still have real effects when higher-level power or scheduling logic trusts those counters.

Can we communally deprecate git checkout?

git checkout vs switch / restore

  • Many agree checkout conflates distinct actions: switching branches, updating files, and sometimes moving HEAD.
  • Supporters of switch/restore say they reduce cognitive load by separating “change branch” from “change files,” and are safer for beginners.
  • Critics argue checkout conceptually “just updates the working tree” and is fine; switch/restore feel like minor syntactic sugar not worth relearning.
  • A major complaint: checkout infers whether an argument is a ref or a path, which can be ambiguous. The -b flag (create branch + switch) is seen as another conflation.

Complexity, mental models, and UX

  • One camp insists Git is fundamentally simple for competent engineers; complexity complaints are overblown and often workflow issues.
  • Another camp says Git’s interface and docs are messy, its concepts leak through everywhere, and it punishes users who don’t understand its internal model.
  • Some suggest Git is fine as “plumbing,” but its “porcelain” and UX are poor; a good tool should let you operate correctly without understanding Merkle trees.

Merge vs rebase

  • Several explanations contrast merge (history-preserving, branchy, faster in the moment) vs rebase (linear history, rewritten commits, easier debugging for some).
  • Some see rebase as risky and time-wasting; others say it’s easy to recover via rebase --abort, tags, or reflog.
  • A common pattern: rebase locally for cleanliness, merge once changes are shared.

Safety, data loss, and footguns

  • Checkout is noted as one of the few commands that can irreversibly destroy data without --force.
  • Others argue reset is the real “hot mess” and more dangerous than checkout, making the suggestion to “teach reset instead” alarming.

Tooling, GUIs, and non-engineers

  • Some say non-engineers shouldn’t touch Git at all; if they must, that’s an organizational problem.
  • Others counter that in labs, startups, and multidisciplinary teams, non-engineers inevitably use Git, often via GUIs, so simpler commands and better UX matter.

Habits, aliases, and teaching

  • Several people stick with checkout (checkout -b especially) due to muscle memory; others deliberately retrained to use switch/restore, sometimes via shell traps.
  • There is broad agreement that teaching new users clearer commands and workflows is valuable, but no consensus that checkout should be “communally deprecated.”