Hacker News, Distilled

AI powered summaries for selected HN discussions.

Page 636 of 797

U.S. Sets Targets to Triple Nuclear Energy Capacity by 2050

Cost competitiveness: nuclear vs. solar/wind + batteries

  • Strong disagreement on relative costs.
  • One side argues nuclear is not competitive with modern wind/solar, pointing to:
    • Lower levelized costs for wind (in some EU data) vs. French nuclear.
    • Market behavior (utilities preferring wind/solar, shutting nuclear/coal).
    • Studies claiming nuclear would need ~85% capex reduction to match an all-renewable system on full system costs.
  • Others counter that:
    • French and Canadian nuclear wholesale costs (~6–8 euro cents/kWh in cited figures) are competitive with fossil-heavy grids.
    • Long plant lifetimes (60–80+ years) and high capacity factors significantly improve economics.
    • Renewables’ apparent cheapness ignores firming, winter reliability, and full-system integration costs.
  • Inclusion of decommissioning, waste, and carbon pricing is contested; posters disagree on whether those would favor nuclear or renewables.
  • Overall cost comparison remains unclear and heavily model-dependent.

Regulation, liability, and subsidies

  • Some claim nuclear is made artificially expensive by “absurd” safety regulation and unique liability structures; if regulated like coal or gas, it would be cheaper.
  • Others argue that relaxing regulation is effectively “cutting corners” on safety.
  • Nuclear opponents highlight capped liability (e.g., Price–Anderson–type regimes) and state support for construction, security, and waste, claiming the industry would be uneconomic without these.
  • Pro-renewable commenters note wind/solar typically bear full liability (e.g., for wildlife impacts) within standard insurance. Nuclear advocates respond that renewables also have non-trivial externalities (bird deaths, grid disturbances), usually tolerated via regulation.

Reliability, energy security, and system design

  • Nuclear is seen by supporters as crucial for:
    • Firm, on-demand power in winter and during multi-day weather events.
    • Energy security and reduced dependence on geopolitically risky fuel imports.
  • Critics argue reliability can be achieved with:
    • Geographic diversity (HVDC “big wires” to non-blizzard regions).
    • Flexible backup (including modern high-efficiency coal in China, gas elsewhere).
    • Demand siting (e.g., energy-intensive industry near hydro/solar resources).
  • Dispute remains over how much firm capacity is needed and the cheapest way to provide it.

Deployment speed and trajectories

  • Skepticism that U.S. targets to triple nuclear by 2050 “move the needle,” given:
    • Very slow historical build rates and major cost overruns (e.g., Vogtle).
    • Battery storage and renewables currently growing at far higher annual rates.
  • Others argue that serial construction, standardized designs, and political will (as in China or past France) could rapidly cut nuclear costs and timelines.

Politics and planning

  • Debate over whether future U.S. administrations or influential figures will favor nuclear vs. shifting funds to solar/batteries.
  • Some see the plan as necessary diversification (“build it all”); others suspect rent-seeking and future cancellations.

Docker Compose Isn't Enough

Scope and role of Docker Compose

  • Many see Compose as a dev / personal or “single-box” tool; others report running serious production workloads with it on many servers.
  • Some argue Docker’s intended production story is Swarm (or K8s), making “Compose in prod” a misuse; others counter that if it’s simple and works, that’s sufficient.
  • Several note that for home/self‑hosting, a single server and occasional downtime are acceptable, making Compose a good fit.

Reception of the article and Tealok

  • Thread recognizes the piece as content marketing for a new runtime (Tealok) aiming to simplify self‑hosting for less‑technical users.
  • Some readers found it informative or relatable, especially around self‑hosting pain; others call it FUD, say it misunderstands Compose, or attacks it for not being a full PaaS.
  • The Tealok approach (TOML DSL, shared infra, automatic TLS/backups, app‑store‑like UX) is seen as promising by some but also questioned for lock‑in and narrow applicability.

Pain points and “wrong abstraction” claims

  • Article’s main complaints: port conflicts, lack of higher‑level concepts (domains, TLS, shared DB/cache), and backups.
  • Many commenters respond that these are routinely solved today with:
    • Reverse proxies/ingress (Traefik, Caddy, Nginx, HTTPS‑portal).
    • Multiple compose files / overrides and conventions for data directories.
    • External backup tools (borgmatic, kopia, scripts) and Git for config.
  • Some agree the abstraction is low‑level for non‑experts; others insist Compose should remain a thin orchestrator, not absorb TLS/backup logic.

Alternatives and tooling landscape

  • Suggested options: Docker Swarm (+Traefik), k3s/microk8s/minikube, managed K8s, Kamal, Podman + systemd, LXD/Incus, nspawn, small custom orchestrators and scripts.
  • Opinion is split: K8s praised for ingress, Helm charts, and hosting third‑party stacks; also criticized as overkill, complex, and costly to run.
  • Several argue that for a single node, Swarm or simple scripts over Compose often beat K8s on simplicity.

Self‑hosting patterns

  • Many describe successful self‑hosting setups: central reverse proxy, one or more shared DBs, Git‑tracked compose files, regular backups, and occasional manual deploys.
  • A recurring theme: most real‑world needs can be met by Compose plus a few well‑chosen tools, provided the operator is comfortable with some scripting and configuration.

80286 ATX mainboard based on the IBM 5170 AT PC

Project overview & goals

  • Thread discusses an ATX 80286 motherboard inspired by the IBM 5170 AT, now running reliably at 20 MHz.
  • The designer reverse‑engineered the AT, recreated missing logic (notably a PAL), and migrated much of the TTL “graveyard” into CPLDs for reliability and higher clock speeds.
  • Goal is to preserve AT technology in an openly documented, reproducible form, while pushing its performance and integrating modern techniques.
  • A follow‑on hybrid 286/486 board is planned, using FPGAs and modern RAM (e.g., DDR), with ambitions like “full‑speed” main memory comparable to cache.

Design choices & technical details

  • Original IBM separation of system bus and memory bus is retained conceptually; memory is moved to an ISA card by putting the memory bus on the slot.
  • Design uses SRAM instead of DRAM, eliminating refresh logic and aiming for zero wait states at the cost of higher RAM price.
  • Several legacy controllers (DMA, PIC, timer) are planned to be reimplemented in an FPGA due to sourcing issues.
  • An on‑board LAN chip appears to destabilize the system; it is recommended to omit it.
  • Some commenters critique signal‑integrity aspects (ground plane cuts, decoupling, clock routing) and ask for full KiCad sources.

Performance, memory, and bus considerations

  • Concerns are raised about placing RAM on the ISA bus; others note the board runs ISA synchronously at up to ~20 MHz, not the classic 8 MHz.
  • Debate over using ISA SRAM vs on‑board DRAM: SRAM simplifies design and timing but is expensive; DRAM would be cheaper but needs a controller.

Operating systems & CPU architecture

  • Curiosity about running old 286‑native OSes such as Xenix and Concurrent DOS; no definitive confirmation in the thread.
  • Extended discussion on why mainline Linux does not target the 286: lack of paging MMU and 16‑bit architecture, not absence of FPU.
  • Clarifications that 286 has segmentation but no paging; 386 added paging and is where Linux started.
  • Broader debate on segmentation vs flat address spaces, hardware task switching, and historical systems like Minix and PDP‑11 Unix.

Nostalgia and bus evolution

  • Many express fondness for ISA’s simplicity and jumper‑based configuration, despite IRQ exhaustion and DMA limitations.
  • PCI’s Plug and Play and message‑signaled interrupts are acknowledged as big improvements, but early PnP (especially ISA PnP) was unreliable.
  • Suggestions for modern tinkering include using SMBus/I²C and PCIe‑to‑PCI adapters; anecdotes highlight IRQ conflicts and debugging hassles.

Licensing discussion

  • The LICENSE file is GPLv3, but the README includes additional “not permitted” style language and usage limits (e.g., non‑commercial / safety‑oriented), which some see as conflicting with GPL and making reuse risky.
  • Others interpret the README mainly as disclaimers, not binding terms.
  • Several argue for a simpler, standard open‑hardware‑style license (e.g., CC‑BY‑SA, optionally with non‑commercial) plus clear warranty disclaimers.

Potential industrial relevance

  • One commenter notes that some critical infrastructure (e.g., a nuclear power station’s control systems) still uses 286‑based hardware, making high‑quality replacements potentially valuable, though certification requirements are a major barrier.

No GPS required: our app can now locate underground trains

Overall reaction to the feature & app

  • Many commenters praise the idea as “super cool” and say Transit is one of the best transit apps they use daily.
  • Others report uninstalling after inaccurate behavior on specific systems (e.g., London Underground, NYC Subway), showing mixed real‑world outcomes.
  • Several users compare it to Citymapper and Google/Apple Maps; in some cities competitors are still preferred.

Underground localization approaches discussed

  • Core idea: use accelerometer and motion classification to detect when a phone is on a moving train and infer position along known routes and schedules.
  • Alternatives and complements suggested:
    • BLE beacons or Wi‑Fi in tunnels and stations.
    • Cell-tower–based indoor positioning.
    • Microphone-based “sound signatures,” though seen as a privacy non‑starter.
    • Barometer/pressure changes when entering/exiting tunnels, used in older research; limited by inconsistent sensor availability.
    • Magnetometer/compass data and signals from in-train systems (CarPlay-style GPS sharing, Wi‑Fi APs broadcasting location).

Dead reckoning, sensors, and ML

  • Multiple comments note classical dead reckoning (integrating accelerometer/gyro) drifts quickly and needs absolute references.
  • Some suggest using distinctive acceleration “signatures” of each track segment, or “Shazam for train tracks.”
  • Others propose combining hunting oscillation of wheel-rail dynamics, inertial data, and schedules.
  • Debate over model types: CNNs, SVMs, RNN/LSTMs, and sensor fusion; one project member confirms they focused on accelerometer-based classifiers and did not use pressure sensors.

Accuracy, edge cases, and limitations

  • The team reports ~90% correct station prediction; commenters question whether that’s sufficient for trust.
  • Hard cases mentioned:
    • Trains stopping in tunnels, running slowly, or skipping stations.
    • Express vs local trains, wrong direction, and mixed-generation fleets.
    • Users walking on the train, packed cars, and faulty in-vehicle GPS.
  • Some users saw the app think they were at the wrong station for entire journeys.

Transit UX, ads, and information

  • Strong sentiment that onboard screens should prioritize next-stop info and door side, but often show ads or generic warnings instead.
  • Arguments that ad revenue matters for underfunded transit, but others say revenue is small and not worth degrading rider info.

Business model, privacy, and ecosystem

  • Transit monetizes via freemium features, in‑app ticketing, and agency partnerships; some dislike subscriptions, others find free tier sufficient.
  • Positive reactions to data staying on-device and not being used as a surveillance/marketing feed.
  • Some speculate this tech would be attractive for acquisition by larger platforms (e.g., Google), but this is not confirmed.

Spirit Airlines is filing for bankruptcy

Headline / Article Framing

  • Several comments dispute the thread title “filing for bankruptcy,” noting the article only says “moves toward” and stressing the legal meaning of “filing.”
  • Some argue colloquially “filing for bankruptcy” can imply an inevitable outcome; others insist it’s strictly a legal term and that using it prematurely is misleading.

Customer Experience and Reputation

  • Very polarized views: some say Spirit (and Frontier) treat passengers poorly, with hostile fee structures and “cattle” treatment, and vow never to fly them again.
  • Others report dozens of smooth, on-time, very cheap flights and claim the experience is comparable to or better than some major U.S. carriers, as long as you know ULCC rules (no bags, follow size limits, no frills).
  • Disputes over whether viral “Spirit passenger” horror clips reflect reality or cherry-picked/social-media-boosted incidents.

Bankruptcy, Mergers, and Antitrust

  • Debate over whether blocking the JetBlue–Spirit merger harmed consumers by pushing Spirit toward bankruptcy vs. correctly preventing consolidation that might raise fares and reduce seats.
  • Some say shareholders picked the riskier, higher-priced JetBlue deal over Frontier against board advice and lost. Others argue it’s unclear ex ante which bid was better.
  • Expectation from commenters that this will be a Chapter 11 reorganization, not full liquidation, though the ultimate fate of the brand is seen as uncertain.

Why ULCCs Struggle in the U.S.

  • Cited factors: fuel and pilot cost increases, operational issues around Florida, inflation reducing the relative savings, and legacy carriers introducing “basic economy” to undercut ULCC price advantage.
  • Structural issues raised: fewer cheap secondary airports near dense populations, slower turnarounds, less use of large planes on thin routes, and gate dominance by the “Big Four.”
  • Spirit’s weaker loyalty/credit-card ecosystem and limited appeal to business travelers are seen as additional handicaps.

Comparisons to Europe/Asia and Class/Status Dynamics

  • Many say European/Asian LCCs feel better than U.S. “regular” airlines; others counter that EU ULCCs are also barebones and charge heavily for extras.
  • Several comments tie Spirit avoidance in the U.S. to status signaling and desire to avoid association with “budget” passengers, unlike in Europe where flying Ryanair/EasyJet is more normalized.

Ask HN: How to deal with a serious mental health breakdown?

Nature of the Crisis

  • Descriptions align with severe psychosis / manic episode: paranoia, grandiosity, talking to voices, lack of sleep, possible suicide risk.
  • Several note this can appear suddenly even in high-functioning, intelligent people; sometimes a first visible episode after years of hidden issues.

Immediate Actions & Safety

  • Many say calling a crisis team / professionals was appropriate, even if imperfect and traumatic.
  • Strong emphasis: prioritize your own physical and psychological safety; leave or move if you feel unsafe, especially if there is any hint of violence.
  • Some advise preemptively moving valuables out and planning alternative housing.
  • A minority argue calling in authorities escalates harm and damages trust, and that a sincere apology for consequences may be warranted.

Role and Limits of Friends/Housemates

  • Repeated theme: you are not his caregiver or responsible for his treatment.
  • Helping is mostly about listening, not arguing with delusions, and maintaining basic contact if it’s safe.
  • Several stress setting clear boundaries and being ready to walk away if it consumes your life.

Medical, Psychological, and Lifestyle Factors

  • Speculation about causes: schizophrenia, bipolar mania, antidepressant- or drug-induced psychosis, lab chemical exposure, metabolic issues, sleep deprivation, stress.
  • Some urge thorough medical/neurological workups to rule out physical causes (e.g., tumors, infections).
  • Strong suggestion to avoid drugs/alcohol; focus on sleep, nutrition, hydration, and possibly specific diets.

Treatment Paths & Communication Strategies

  • Broad agreement: severe episodes generally require professional intervention and often antipsychotic medication.
  • Suggestions: crisis hotlines (e.g., 988), therapists, support groups, “I Am Not Sick, I Don’t Need Help”–style approaches that avoid confrontation and focus on practical benefits of treatment.
  • Tactics mentioned: long walks to let the person talk, validating feelings without endorsing delusions, emphasizing brain health, and planning long-term strategies to catch early warning signs.

Caregiver Self‑Care and Support

  • Many recommend therapy or counseling for the roommate themselves, plus caregiver support groups (including 12‑step–style groups).
  • Message repeated across comments: you must “put on your own oxygen mask first” to be of any help.

Manjaro is experimenting with **opt-out telemetry

Status of Manjaro Telemetry Plan

  • Manjaro is testing a “Manjaro Data Donor” (MDD) system and debating opt-in vs opt-out.
  • A forum poll reportedly shows strong support for opt‑in; final policy is unclear.
  • Telemetry endpoint is metrics-api.manjaro.org; code is on GitHub.

Opt‑in vs Opt‑out and Consent

  • Strong view: telemetry must always be opt‑in; opt‑out is inherently non‑consensual and a “dark pattern.”
  • Counterview: opt‑in yields too little and biased data; opt‑out with clear disclosure and easy disabling is seen as an acceptable compromise by some.
  • Many argue that usefulness to developers does not override the need for explicit consent.

Privacy, Data Collected, and Network Concerns

  • Reported data includes hardware inventory, timezone, country, and even size of the home directory.
  • Some consider this modest and anonymous; others find hardware lists and disk usage inherently sensitive.
  • One camp says any unsolicited network connection is objectionable; another replies that systems already contact mirrors and other servers, so telemetry traffic is not fundamentally different.

Legal / GDPR Considerations

  • Multiple comments assert that opt‑out telemetry is not GDPR‑compliant; consent must be explicit and granular.
  • UK ICO guidance is cited against pre‑ticked or default-on collection.
  • Question raised why major vendors (e.g., Microsoft) get away with more invasive defaults.

Impact on Manjaro’s Reputation and User Choices

  • Some long‑time users/donors say this is a breaking point; donations canceled and migration to other distros planned.
  • Fear that Manjaro will be branded “spyware Arch,” undermining its appeal to privacy‑conscious users.
  • Others plan to stay but will block the telemetry domain and “watch for more shenanigans.”

Broader Telemetry Ethics and Developer Needs

  • Many emphasize that Linux is used specifically to avoid pervasive data collection; they reject “everyone else does it” arguments.
  • Others stress that anonymous usage stats are a crucial tool for improving software and are low‑risk if properly anonymized.
  • Recurrent theme: longstanding distrust due to industry abuse; users demand transparency, exact descriptions of collected fields, viewable payloads, and easy, first‑class opt‑out or (preferably) opt‑in.
  • A game‑dev subthread explores user‑visible dashboards, in‑game prompts after play sessions, and feature incentives as ways to make voluntary telemetry attractive.

Alternatives and Broader Ecosystem Discussion

  • Several suggest switching to Arch, EndeavourOS, Debian (with its opt‑in “popularity‑contest”), Void, Devuan, Alpine, or BSDs for those wanting minimal telemetry and maximum control.
  • Debate touches on whether free software should hold a higher privacy bar than proprietary systems (Apple, Windows); most here argue yes.

AI Hype Is Cooling – New survey

Startup adoption experiments & tooling costs

  • Some small companies are buying “every AI add‑on” (ChatGPT Enterprise, Gemini, Copilot, Slack/Notion AI, etc.) for a year to see what sticks.
  • Reported spend: $100–$200 per employee per month, i.e., tens of thousands per year — comparable to a salary.
  • Expectation: 2024 is experimentation; 2025 will cut underused tools. Many doubt smaller firms can afford this level of trial-and-error.

Enterprise usage, security, and access

  • Some organizations block external AI tools over data leakage, confidentiality, and compliance fears.
  • Counterpoints: companies already trust many third parties with data; AI vendors offer training opt‑outs and business data agreements.
  • Suggested middle ground: clear security criteria, local/hosted models, or tightly scoped integrations.

Hype cycle, progress, and “AI winter” worries

  • Many frame the current mood as classic hype-cycle cooling: expectations reset after hands‑on experience.
  • Some say frontier models may be hitting diminishing returns; rumors of stalled breakthroughs and underwhelming new models are cited.
  • Others note deep learning has scaled for a decade and expect more gains, tied to compute and architecture advances.

Where AI is delivering value

  • Strong use cases mentioned: coding assistants, internal search over documents, language translation, medical transcription, RAG-based support tools, and medical imaging enhancement.
  • Some find general chatbots most useful for idea exploration; many derivative “AI features” feel gimmicky or harmful to productivity.

Incumbents, platforms, and API wrappers

  • Widely shared view: big platform players (Microsoft, Google, Adobe, Nvidia) are best positioned to win via deep integration and distribution.
  • Skepticism that “API wrapper” startups and meeting-bot tools will survive once incumbents bundle similar features.
  • Some note AI is still largely “integration work”: real value comes from grounding models in company data and workflows.

Economic, social, and ethical concerns

  • Debate over disruption examples like Chegg: some see useful creative destruction; others see VC-subsidized dumping destroying viable, profitable businesses and jobs.
  • Concerns about massive resource use (energy, water, silicon) and “wasteful” AI features that don’t solve real problems.
  • Workers often hide AI use due to fears of seeming lazy, incompetent, replaceable, or sloppy given hallucinations and plagiarism risks.

M4 Mac mini's efficiency

Performance & Efficiency

  • Many commenters report the M4 Mac mini feels “incredibly fast” and responsive, even for heavy workloads like 6K RAW or 8K video in Resolve and Premiere, often outperforming older Intel i5 laptops by 4–5x in renders.
  • Idle and light‑load power draw around 3–5 W is repeatedly highlighted; people compare this favorably to Intel mini‑PCs and even Raspberry Pi‑class devices.
  • Some note Apple’s efficiency is helped by unified memory, high bandwidth, and aggressive compression/caching, making 16 GB feel more capable than on typical x86 systems.

RAM, Storage & Pricing

  • Base config (16 GB / 256 GB) is praised as a strong value for light–medium workloads, but many see it as limiting for long‑term or heavy professional use.
  • RAM upgrades are widely criticized as extremely overpriced vs PC DDR5; 64 GB+ needs push people back to PCs.
  • Internal SSD capacity is also seen as overpriced; several suggest external Thunderbolt SSDs or NAS to compensate.

Home Server & OS Choices

  • Some run Mac minis as home servers (Docker, CF Tunnel, Tailscale, NAS), but others argue macOS is explicitly not a server OS and lacks things like first‑class container/VM support and Linux‑style tooling.
  • Desire for official Linux support is strong. Asahi Linux is praised but currently only supports M1/M2; M4 support is expected “eventually.”
  • Running Linux in VMs (UTM, Parallels) is common, but GPU acceleration and overhead are concerns for some server or ML workloads.

SSD, Upgradability & Longevity

  • New M4 mini has a removable proprietary NAND module; controller remains on‑SoC.
  • iFixit and others have shown module swaps; some hobbyists even resolder higher‑capacity NAND, but this is not “easy” or consumer‑grade.
  • Debate on SSD wear: some say modern SSDs will outlast the machine; others worry about swap‑heavy 8–16 GB configs on non‑replaceable internal storage.

Power Button on the Bottom

  • This design choice generates a huge sub‑thread:
    • Supporters: you rarely use it; Macs should mostly sleep/wake; bottom placement reduces accidental presses and simplifies the small enclosure.
    • Critics: awkward for racks, constrained desks, people with limited dexterity; seen as “typical Apple” form‑over‑function and hard to justify.
  • Workarounds mentioned: mounting upside down or on the side, 3D‑printed levers, using managed PDUs / remote reboot instead.

Alternatives & Comparisons

  • x86 mini‑PCs (NUC, Beelink, Minisforum) are frequently raised as cheaper and more flexible:
    • They offer user‑replaceable RAM/SSD, Nvidia GPU slots, better Linux support, and similar or higher multi‑core performance.
    • But they’re typically noisier, less power‑efficient, and sometimes sketchier on firmware/security.
  • Several argue that for many users, used x86 boxes at a fraction of the cost are “good enough,” while others say the M4 mini’s perf/W and silence are unmatched at its price.

Developer & Tooling Notes

  • Nix and nix‑darwin on macOS get mixed reviews: workable and useful, but less smooth than NixOS; can eat disk space quickly on 256 GB machines.
  • Docker on macOS always implies a Linux VM; fine for many web apps, but not ideal for GPU‑heavy or latency‑sensitive workloads.
  • macOS is generally regarded as a very pleasant environment for backend/web dev (Node, Java, Python, Go), with good tooling and UX.

Sustainability & Lifecycle

  • Apple’s claims of high recycled content, 100% renewable electricity for manufacturing, and the M4 mini being their first “carbon neutral” Mac are noted positively.
  • Some remain skeptical of lifecycle impact given soldered RAM, proprietary SSD modules, and high upgrade costs that can shorten useful life.

Unusual Raku Features

Reactions to Raku’s sequence and lazy features

  • The ... sequence operator that guesses arithmetic/geometric progressions impresses some and worries others.
  • Supporters like that it either deduces a simple rule at compile time or errors out; detractors see it as a “parlor trick” that complicates mental models and fear hidden magic.
  • Examples show elegant expressions for geometric sequences, Fibonacci via *+*, primes via lazy filters, and math series for constants like e.

Expressiveness vs readability and maintainability

  • Enthusiasts find Raku’s feature density exciting, fun, and powerful for concise, “awesome” code and DSL-like domains.
  • Skeptics worry that features like auto-deduced sequences, hyperoperators (<<+>>), and junctions encourage clever, hard-to-read code, especially in teams.
  • Some contrast this with “boring” but predictable languages (Go, Java, PHP) that favor uniformity over expressiveness.

Hyperoperators, array programming, and higher‑order style

  • Hyper and metaoperators enable broadcasting and reductions similar to NumPy, Groovy’s spread operator, or Mathematica, and can recurse into nested lists.
  • Fans celebrate array-programming power; critics dislike the symbolic “operator soup” and argue such complex behaviors should be named functions, not core operators.

Grammars, regexes, and parsing

  • Grammars and powerful regexes are highlighted as standout, “first-class” features, turning parsing into a core strength.
  • Raku regexes go beyond traditional regular languages, integrate with grammars, and can embed full Raku code, enabling direct parsing-to-AST/data structures.
  • Some argue this blurs the line between “regex” and full parser; others caution about performance and cognitive load.

Junctions and non-determinism

  • Junctions (value superpositions) simplify multi-option comparisons but introduce implicit “apply over all members” behavior.
  • Comparisons are drawn to PowerShell pipelines; some find the implicit distribution elegant, others fear hidden loops and non-determinism hurting readability.

Performance and practicality

  • There is at least one concrete benchmark where Raku regex log parsing is significantly slower than Python (excluding startup).
  • Others note performance varies by task and point to Raku’s heavy startup and dynamic nature as known trade-offs.
  • A few people report successful production use, especially for text-heavy and parsing-heavy workflows.

$8k Suzuki from India received a 5-star crash test rating

Availability and demand for cheap small cars (especially in the US)

  • Many commenters wish the US had $8k–$10k basic cars and resent paying for large SUVs/trucks.
  • Others argue automakers already tried cheap/subcompact models (Yaris, Fit, Spark, Mirage, Versa, Fiesta, etc.) and they sold poorly; buyers overwhelmingly choose larger, more powerful SUVs and trucks, often on long, expensive loans.
  • Some say manufacturers and dealers prefer high-margin vehicles and shape demand via marketing; others counter that companies mostly follow revealed consumer preferences.
  • Used cars are seen as the real “bottom end” of the US market now.

Regulation, tariffs, and policy effects

  • CAFE rules, import tariffs, and USMCA/NAFTA wage requirements are cited as making very small imports uneconomical and incentivizing larger “footprint” vehicles.
  • In Australia and India, commenters highlight tariffs, luxury car taxes, and layered sales/road taxes as major price components.
  • Chinese EV maker BYD is discussed as undercutting prices abroad, with debate over the role and scale of Chinese subsidies and whether very high US tariffs could or should block them.

Safety ratings and crash physics

  • Global NCAP 5-star ratings are praised but repeatedly noted as class-relative: a 5-star subcompact is not as protective as a 5-star large sedan or SUV, especially in head‑on collisions.
  • This drives a perceived “arms race” toward heavier vehicles, making roads more dangerous for occupants of small cars, cyclists, and pedestrians.
  • Euro NCAP is criticized for heavily weighting active safety tech (lane-keep assist, etc.), which drags down ratings for otherwise decent cars (e.g., Dacia, Suzuki Swift).
  • Euro NCAP and some manufacturers do factor in pedestrian safety, but US-style ratings focus mainly on occupants.
  • There is detailed discussion of momentum, delta‑V, and crumple zones; consensus is that heavier vehicles generally fare better in vehicle‑to‑vehicle crashes, but not necessarily into fixed objects.

Environmental rules and specific models (Jimny, Dzire, etc.)

  • The Jimny’s withdrawal as a passenger car in Europe is attributed to fleet-average CO₂ and broader EU emissions/safety regulations; Suzuki lacks enough low‑emission models to offset it.
  • It survives in some markets as a “commercial” vehicle with looser rules, and an electric or hybrid version is rumored.
  • Some call the rules “arbitrary” because high‑end, thirsty SUVs still sell if balanced by EVs in the same fleet; others defend fleet averaging as a way to push overall emissions down.

Global pricing, PPP, and manufacturing

  • Indian buyers can get well‑equipped small SUVs or sedans for under ~€10k, which shocks Europeans paying much more even for used cars.
  • One view: prices are low mainly due to local wages and purchasing power parity.
  • A rebuttal emphasizes scale and automation (e.g., high robot density in Maruti Suzuki plants, large export volumes) and notes that wages at top Indian plants can be comparable to Eastern Europe while prices remain much lower.
  • Taxes in India can be 40%+ of car price, implying pre‑tax production costs are even lower.

Vehicle longevity and “car for life”

  • In India, cars are often considered done after ~10–15 years, partly due to wear, roads, and specific regional rules (e.g., NCR limits on >15‑year vehicles).
  • In Germany and elsewhere in Europe, older cars (10–20 years) remain common; average fleet age is ~10–12 years.
  • Engineers mention typical design targets around 10–15 years / 100k–150k km, but many modern cars exceed this with maintenance.

Labor and environmental conditions in Indian production

  • An engineer who worked on Indian production lines reports surprisingly good working conditions at major OEMs: clean plants, strong safety practices, and relatively well‑paid, stable jobs.
  • Conditions at smaller third‑party suppliers are described as more variable and sometimes poor.

Spanish police arrest ex-fraud chief after €20M found in walls of his house

Cash vs. Crypto for Crime

  • Multiple commenters ask why a fraud chief would stash physical cash instead of Bitcoin.
  • Arguments for cash: simpler, less volatile, more familiar, widely usable, and often less traceable in practice.
  • Arguments against crypto: public ledgers can make linking funds to individuals easier; converting large fiat sums to crypto requires intermediaries and KYC-regulated points; operational use is “nontrivial.”
  • Some note he did allegedly use crypto as part of laundering, but cash still dominated.
  • View that “cash is king” for crime is widely echoed.

How Do You Use or Launder €20M in Cash?

  • Many doubt you can ever personally “spend” that much legitimately without attracting scrutiny.
  • Suggested laundering strategies:
    • Cash-heavy front businesses (car washes, takeaways, taxis, VIP event promotion, small retailers).
    • Smurfing: depositing many sub‑threshold amounts via “money mules.”
    • Fake or inflated invoices between related entities (e.g., renovations, services).
    • Luxury-car rental or ownership schemes; some note the article itself mentions private hire vehicles.
    • Real estate purchases in jurisdictions with weak or delayed AML rules (e.g., earlier Spain, current Australia).
  • Skeptics argue several proposed schemes underestimate audits, KYC, and the difficulty of fabricating plausible customers.
  • One self-identified ex–money launderer says the methods are scalable and common in certain small businesses.

Cash, Denominations, and Policy

  • Discussion of large notes: €500, £50, US $100, CHF 1000.
  • Some countries discourage or stopped issuing large notes due to association with crime; others (e.g., Switzerland) keep them, citing legitimate uses and inflation.
  • Several anecdotes about partial cash payments for property or bonuses using large notes.

Cashless Society, Exclusion, and Control

  • Some see card-only and cashless trends as convenient and inevitable; argue businesses shouldn’t be forced to accept cash.
  • Others call card-only discriminatory toward the unbanked: homeless, undocumented immigrants, blacklisted individuals, minors.
  • Concerns raised about:
    • Payment networks (Visa/Mastercard) effectively setting moral/legal boundaries.
    • State or corporate ability to “turn off” individuals’ access to money.
    • High card fees and contractual limits on surcharging, seen as unfair market power.

Institutional Corruption & Social Trust

  • The case sparks a broader reflection on “corrupt anti-corruption officials” and similar roles (professors, media, lawyers) whose self-serving behavior erodes institutional trust.
  • Described as a shift from cooperative to defecting equilibria; suggestions include calling such actors “enshittifiers.”
  • Others link systemic tax evasion (e.g., Greece’s crisis) to the breakdown of mutual compliance norms.

Russian family lived alone in the Siberian wilderness for 40 years (2013)

Desire for Wilderness Living & Practical Challenges

  • Several commenters fantasize about semi-isolated living (e.g., a remote chalet with solar and Starlink).
  • Others stress that money and time are the main barriers; many construction and homesteading skills can be self-taught via YouTube and library resources.
  • Examples from Yukon and Norway show people successfully doing this, but also stories of homesteaders struggling with costs, delays, and harsh winters.

Health, Consent, and Ethics of the Family’s Isolation

  • Some highlight the tragedy: deaths from kidney failure (likely diet-related) and pneumonia possibly introduced by visitors.
  • Disagreement over whether the family “lived what they wanted”:
    • One side sees them as refugees forced into a harsh, unsafe life, not freely chosen over modern comforts.
    • Another emphasizes they were fleeing Bolshevik persecution, suggesting context and subjective values matter.
  • Comparisons are made (contentiously) to modern homeless people and to people who reject consumer society for ethical reasons.

Religion, Old Believers, and Cultural Continuity

  • The family’s Old Believer faith and multi-century grudge against 17th‑century church reforms fascinate many.
  • Discussion of specific liturgical changes (e.g., two-finger vs three-finger crossing) and how such disputes define identity.
  • Noted as an example of how oral traditions and grievances can stay vivid for centuries; debate on whether social media would dissolve or amplify such zealotry.

Skepticism and Narrative Reliability

  • Some find aspects of the story hard to believe (e.g., their understanding of satellites), with suggestions that Soviet-era ideological framing or journalistic embellishment may have shaped details.

Wilderness, Environment, and Modernity

  • Reactions contrast the family’s lack of medicine and basic tools with modern digital life.
  • Experiences from mountains, Yukon, Iceland, and long-distance walking highlight how quickly people notice pollution after time in clean air.
  • References to related films and documentaries (e.g., Siberian taiga trappers) broaden the theme of remote life.

Indigenous History and Geopolitics

  • One thread notes that the “wilderness” was historically inhabited (e.g., Hakassi), leading to debate over Russian imperialism, comparisons to other powers, and accusations of “Russophobia.”
  • This expands into heated discussion on modern conflicts (Ukraine, Syria, US wars), military bases, and whether criticism of Russia is justified fear vs prejudice.

Practical Survival Questions

  • Curiosity about how the family maintained fire and boiled water over decades.
  • Replies mention long-lived iron pots that eventually rusted and makeshift wooden vessels, later supplemented by geologists’ gifts.
  • Yukon trippers describe how, without key gear (rifle, axe, fire-starting tools), survival beyond a few days or a single season would be doubtful, underscoring the family’s feat.

Show HN: Jelly – A simpler shared inbox for small teams

Pricing and Value

  • Strong debate around the $29/month starter price.
  • Some see it as expensive for very small teams, hobby projects, and families, especially when stacked with other subscriptions.
  • Others emphasize it’s a flat team price (not per-seat), calling it cheap relative to employee salaries and typical SaaS alternatives.
  • Several suggest a cheaper “micro-team / duo” tier and special discounts; the team signals willingness to work with nonprofits and similar groups.
  • Concerns raised that “unlimited users” is risky; suggestion to introduce sensible caps (e.g., 1k–10k).

Product Philosophy & Positioning

  • Makers explicitly reject profit maximization and per-seat pricing, aiming to serve small teams that feel overcharged or underserved by bigger tools.
  • The product is framed as “does a few things well” vs. full-blown help desk platforms (Intercom, Zendesk, etc.).

Use Cases and Comparisons

  • Core pain: shared addresses handled via Google Groups, shared Gmail/Fastmail accounts, or filters/forwarding make it hard to see who owns a conversation, coordinate replies, and discuss internally.
  • Jelly’s value: assignment/“who has the ball,” inline discussion, activity views, and easy sharing of conversation URLs.
  • Some believe Google Workspace/O365 built-ins are “good enough,” especially when already paying per-seat.
  • Others compare to tools like Front, Missive, Chatwoot, Zammad, osticket; Jelly is praised for simplicity and pricing versus those.
  • Interest in family and household use (schools, medical, bills), but many feel $29/month is high for personal scenarios.

Technical Stack & Integrations

  • Built on a straightforward Rails + Postgres stack, deployed via Render with automated GitHub deploys.
  • Uses Postmark for inbound/outbound email.
  • Current workflow: forward mail from any provider into Jelly.
  • Higher-tier “Royal Jelly” offers IMAP-based sent-mail sync (e.g., back into Gmail); some want IMAP access on lower tiers for risk-free trials or mutt/desktop workflows.
  • Slack integration exists; potential future deeper provider integrations are hinted at.

Onboarding, Lock-in, and Reliability

  • Multiple commenters worry about adopting a shared inbox tool that might shut down or hike prices later, citing prior bad experiences.
  • Requests for clear data export paths and smooth fallback options; Jelly’s team stresses they’d help customers exit cleanly with their data.
  • Email deliverability is flagged as a concern after a verification email went to spam; the team treats this as serious and invites direct troubleshooting.

UX, Messaging, and Misc Feedback

  • Landing page and UI widely praised as clean, simple, and “decent.”
  • Some copy (“jam on email”) polarizes readers; others enjoy the playful tone and easter eggs.
  • Minor issues reported: CSS glitches, YouTube video requiring an account, and wording confusion on pricing explanation.

Mom jailed for letting 10-year-old walk alone to town

Scope of Reaction

  • Most commenters find the arrest absurd and disproportionate to any plausible risk.
  • Many highlight the trauma to the child of seeing a parent arrested as clearly worse than the risk of a short walk.

Child Autonomy vs. Safety

  • Numerous personal anecdotes: walking/biking miles alone from age 5–10, errands, buses, highways, even international large cities.
  • Many argue autonomy is critical for development; overprotection correlates in their view with depression, obesity, “snowflake” behavior.
  • Others stress some risk reduction over decades, but several attribute this more to regulation and product/road safety than to “helicopter” parenting.

Actual Risks vs. Perceived Risks

  • Several cite data (from books and news articles) that:
    • “Stereotypical” stranger kidnappings are extremely rare; family abductions and runaways dominate missing-child stats.
    • Youth homicides are mostly by known people; motor vehicle accidents and firearms are far greater killers than walking alone.
  • Many blame media-driven crime hysteria and 24/7 “if it bleeds, it leads” coverage for exaggerating stranger danger.

Policing, CPS, and Legal Framework

  • Strong criticism of US policing culture: power-tripping, suspicion of anyone walking, especially kids, non-drivers, and people of color.
  • Commenters note the vague “reckless conduct” charge and see it as a catch‑all when no real crime exists.
  • Several emphasize institutional incentives: no personal downside for sheriff, DA, or child services to overreact; “safety plans” and surveillance apps seen as bureaucratic CYA and rights erosion.
  • A few point out at least one commenter verified the arrest in local records, countering doubts about story authenticity.

Infrastructure and Road Safety

  • Some defend the initial concern, citing Georgia’s highway-style roads with no sidewalks or shoulders as genuinely hazardous for pedestrians.
  • Others counter that children routinely navigate similar roads worldwide and in past decades; argue that if roads are too dangerous to walk, the policy failure is with infrastructure, not parenting.

Cultural and International Comparisons

  • Comparisons to Europe, Japan, Canada, India, Denmark: kids commonly roam, walk, bike, take transit alone from ~5–10.
  • Several argue US suburban, car-centric, low-trust culture is uniquely hostile to kids’ independence; low‑income and dense urban US areas reportedly still have freer-range kids.
  • Debate over whether incidents like this are rare “freak” cases in a big country or evidence of a broader “safetyism” trend.

Bypassing regulatory locks, hacking AirPods and Faraday cages

Behavior of the Hearing Aid Unlock

  • Enabling the feature appears to be a one-time action: it sets a flag on the iCloud account and pushes an EQ profile into the AirPods’ transparency mode.
  • The setting sticks across regions and continues working unless the AirPods are reset.
  • If the AirPods are enabled on one account but used with another account where the feature is “unavailable,” that second account can’t tweak the settings.
  • Some commenters say similar functionality already existed via audiogram-based “Headphone Accommodations” before the new hearing-aid branding.

Region Locking and Location Spoofing

  • The feature is region-gated; questions arise about whether the flag might later be revoked when the device spends time outside approved regions (unclear).
  • Some users report that Apple treats account region, physical location, and mobile network region differently for other features (e.g., EU app-store rules, ECG).
  • VPN alone is insufficient because Apple relies heavily on Wi‑Fi SSIDs/MACs and GPS; the hack therefore used a Faraday cage plus spoofed Wi‑Fi.
  • Suggestions include external spoofed GPS devices, fake base stations, and using EU/US accounts simultaneously for other geo-locked features like alternative app stores.

Faraday Cage Construction and Uses

  • The initial “microwave-as-cage” prototype was too leaky; a sturdier cage was built from fine copper mesh and aluminum extrusions.
  • A walk-in cage is praised as far more usable than small tabletop boxes, enabling hands-on testing and complex setups.
  • Proposed uses: RF isolation for measurements, playing with rogue Wi‑Fi/cellular networks, GPS spoofing, and general network research without affecting live systems.

Hearing Aid Performance and Constraints

  • The feature is officially limited to mild–moderate hearing loss; one user had to redo the hearing test until results fell within that range.
  • Early anecdotal feedback from elderly users: sound is “different” but acceptable; battery requirements are similar to existing hearing aids.
  • Questions remain about how well it handles profound or asymmetric hearing loss; current behavior reportedly averages both ears into one profile.

Regulation, Lock-In, and Alternatives

  • Debate centers on whether geo-locking is justified by medical-device regulation versus being hostile to users.
  • Some argue open firmware or free software would let users bypass such restrictions or avoid them entirely.
  • Discussion touches on high hearing-aid prices (especially for custom DSP molds) versus the much lower cost of AirPods and on emerging open-firmware TWS earbuds.

Visualizing 13M Bluesky users

Visualization & Data Access

  • The map uses Bluesky’s open firehose to plot ~7.7M users after filtering obvious bots/low-activity accounts; commenters love the visual clarity (clusters, bot rings) and GPU-rendered “graininess.”
  • Some ask how user embeddings were derived and note that graph layouts lack a well-established “grammar” for precise interpretation beyond clusters/topology.
  • Others are surprised the author felt comfortable publishing a graph of identifiable users; concerns raised about GDPR and processing personally identifiable information even if data is public and openly streamable.

Bluesky Growth & User Experience

  • Multiple users report Bluesky recently went from “ghost town” to highly active, with follower counts jumping and event throughput roughly doubling.
  • Experiences vary: some see strong engagement and diverse communities; others see dead feeds or discover timelines dominated by journalists, furries, nudity, or anti-Twitter content.
  • Perceived demographics: mix of software people, artists, “normies,” and various subcultures; some say it’s less tech-dominated than expected.

Comparisons with Other Platforms

  • Versus X/Twitter: X is described by many as toxic, spam- and bot-ridden, politically right-leaning, and degraded in utility; a minority say their X feed is still balanced and that previous “censorship” of right-leaning content was the real issue.
  • Versus Mastodon: Mastodon praised for being open/federated but criticized for poor onboarding, siloed instances, and off-putting global timelines; Bluesky seen as closer to “Twitter 2015” with simpler UX.
  • Versus Threads: Threads is viewed as normie-heavy, Instagram-adjacent, growth-hacky, and politically throttled; Bluesky feels more conversational and news/politics/science-focused.

Moderation, Hate Speech, and Bots

  • Long subthread distinguishes hate speech (attacking protected groups) from generic negativity toward platforms or politicians; some argue Bluesky’s anti-X posts are unpleasant but not hate speech.
  • Several describe extreme hate and porn spam shown to fresh X accounts; others counter that X simply stopped suppressing certain views.
  • Bluesky’s tools—labeling services, custom feeds, blocklists, and “show more/less like this”—are seen as promising for filtering trolls, bots, and unwanted subcultures, though spammers are expected to arrive.

Openness, Hackability, and Ecosystem

  • Bluesky’s open APIs and firehose are widely praised: people share tools (Jetstream, websocat) and visualizations, starter-pack directories, and analytics dashboards.
  • There’s nostalgia for the early hackable Twitter era (user-invented RTs, @, hashtags) and frustration that closed APIs killed an ecosystem of third-party tools.
  • Some worry open APIs will worsen bots; others note Twitter’s bot problem worsened after API lockdown.

Identity, Federation, and Cross-Network Bridging

  • Using a personal or corporate domain as a Bluesky handle is praised for self-verification and “censorship-evident” identity; contrasted with Mastodon’s instance-based identity and more involved verification.
  • Mastodon is described as the “most versatile” for federation, able to follow some Bluesky and Threads accounts via Bridgy Fed, though bridging now requires opt-in and can be confusing.

Privacy, Legal, and Monetization Concerns

  • Debate over legality of scraping: some cite precedent that public pages are fair game but note risk of C&Ds and complications once content is behind login walls.
  • Concern that VC-funded Bluesky will eventually need aggressive monetization (“enshitification”); countered by references to its public-benefit structure and hints at subscription-based revenue rather than ads, though impact remains unclear.

Politics and Fragmentation of Social Media

  • Many see Bluesky as heavily left-leaning and X as increasingly right-leaning; some predict mutually reinforcing echo chambers.
  • Others lament that nearly all large networks have become ideologically polarized since ~2016, with Hacker News seen as a partial exception due to moderation and topic focus.
  • Some hope that decentralization (Bluesky, Mastodon, IndieWeb) and account portability can mitigate platform capture by specific political or corporate interests, but whether respectful cross-ideological discourse is feasible remains unclear.

Backdoor attempt on Exolabs GitHub repo through an innocent looking PR

Nature of the PR and “innocence” of the backdoor

  • Many commenters say the PR is obviously malicious, not “innocent”: obfuscated exec(''.join(chr(x) for x in [...] )), hidden in what looks like a docs-only/README change.
  • The decoded Python code fetches a payload from a domain clearly labeled as malicious and then os.system executes it.
  • The attacker’s handle and domain naming are viewed as comically blatant; several compare it to low-effort phishing that self-filters more careful targets.
  • Some see the article title as exaggerated clickbait, since the backdoor is neither subtle nor sophisticated.

Scope and pattern of attacks

  • The same account spammed many popular Python and related repositories with near-identical backdoor PRs before being banned.
  • It’s unclear whether any project actually merged these PRs; commenters ask if “anyone bit” but no evidence is presented.
  • One commenter notes the payload URL returned 404 and the domain owner claims no such file ever existed, raising the possibility it never reached an execution stage.

Motive and sophistication debate

  • Several view this as a clumsy, “script kiddie” attempt hoping a junior maintainer will merge without review.
  • Others speculate it could be a stunt, “research,” or an attempt to frame someone else, referencing posts outside GitHub that suggest setup or trolling.
  • There’s broader debate around sophisticated supply-chain attacks (e.g., xz backdoor, npm expired domains, JS dependency hijacks, weak crypto libraries), with some arguing they require nation-state-level motive/resources and others countering that many non-state actors can and do perform similar long-game compromises.

GitHub and supply-chain security concerns

  • Maintainers report an uptick in strange or suspicious PRs and call for stronger platform support:
    • Throttling or limiting PRs from brand-new accounts.
    • Automatic challenges or extra verification for first-time contributors.
    • Cross-repo flagging of risky PR patterns and suspicious contributors.
  • Extensive criticism of GitHub Actions:
    • Widespread use of unpinned or tag-pinned actions allows malicious retagging.
    • Even pinned Docker-based actions can swap images behind the same tag.
    • Self-hosted runners can be abused via workflows triggered by comments, potentially bypassing “outside collaborator” restrictions.
  • Proposed mitigations include enforced 2FA (noting it is rolling out), stricter tag policies for Actions, vendoring and pinning by commit, CI capability/permission models (restricting unexpected network/IO), and more rigorous local review and testing of incoming changes and dependencies.

Broader lessons

  • Commenters emphasize that GitHub’s monoculture magnifies supply-chain risk.
  • Several reiterate: review all code and dependencies that go into production; relying on web diffs and collapsed files alone is seen as dangerously insufficient.

Show HN: Stretch My Time Off – An Algorithm to Optimize Your Vacation Days

Overall Reception

  • Many find the tool clever, visually appealing, and genuinely useful for planning PTO, especially compared with manual spreadsheet/calendar hacks.
  • Several say they’d likely use it a few times a year; others see it more as a fun experiment or “start of something handy” than production-ready.
  • Some are skeptical of the core premise, preferring to take time off based on burnout, seasons, kids’ school, or travel costs rather than maximizing contiguous blocks.

Holiday Data & Customization Needs

  • Strong recurring request: fully customizable holidays.
    • Toggle on/off public holidays, add company/corporate shutdown days, school breaks, Jewish holidays, and other custom dates.
    • Handle regional differences (US states, German/Bavarian holidays, UK regional bank holidays, Swedish Christmas/Midsummer eves).
    • Some countries’ data is incomplete or off (e.g., Sweden, France “faire le pont,” missing UK holidays, year-crossing issues).
  • Users want:
    • Editable work week (e.g., 4-day weeks, compressed hours, Fridays off).
    • Ability to mark mandatory-on/mandatory-off days and blackout dates (on-call, Monday bans, etc.).
    • School schedules and constraints for families.

Algorithm Behavior & Requested Features

  • Current algorithm:
    • Maximizes long contiguous blocks, often piling days in late-year periods (e.g., around Christmas or Easter), sometimes leaving big gaps with no breaks.
    • Only shows a single “best” solution, despite many ties.
  • Desired improvements:
    • Multiple options / rankings for tied solutions; ability to “shuffle” or reseed results.
    • Per-day manual overrides: force a day on/off, lock existing trips, then optimize remaining days.
    • Preferences/weights: preferred seasons, distance from major holidays, even spread vs. long blocks, maximum days per block/quarter, legal constraints (e.g., Brazilian PTO rules).
    • Better metrics and wording: users find “stretch from X to Y days” misleading; want clearer accounting of true “extra” days, block sizes, and year-spanning clusters.

Usability & UX Feedback

  • Requests for:
    • Monday as first day of week (often per locale).
    • Custom year range or fiscal year start; planning between now and year-end.
    • State search that behaves like typical typeahead.
  • A few note corporate firewalls blocking the domain, or dislike IP-based geolocation.

Broader Reflections on PTO

  • Some optimize the opposite: avoid public-holiday periods due to crowds and prices, or prefer frequent 3-day weekends / 4-day workweeks.
  • Several argue that “unlimited PTO” or simply having many days off makes optimization less necessary.

Waymo One is now open to all in Los Angeles

User experience & safety controls

  • Several riders report Waymo trips in SF and LA as smooth, predictable, and less stressful than human drivers; some call it the “best tourist attraction.”
  • Cars have a “pull over now” / emergency stop control; doors can be opened from inside even in motion, though the system protests.
  • Some note delay between hitting “pullover” and actual stopping; occasionally opening the door is faster.
  • Concerns about feeling “trapped” are common; mitigations include emergency controls, ability to call support/911, and extensive cameras.

Coverage, rollout & capabilities

  • LA service covers ~80 square miles, not all of LA; hills and some neighborhoods are excluded so far.
  • People compare rollout to cable/fiber: city-by-city, with each area needing mapping and regulatory work.
  • Users observe good behavior on narrow, unmarked streets and in “single-car-width” situations; deadlocks can occur when multiple Waymos meet around obstacles.
  • Winter and snow are seen as a hard but not impossible problem; Waymo is testing in snowy regions.

Safety statistics & comparisons

  • Raw crash counts are criticized as meaningless without miles-driven or context; miles per crash also seen as an imperfect metric.
  • Thread strongly distinguishes Waymo’s L4 robotaxis from Tesla’s L2/L3 “Full Self-Driving (Supervised).”
  • Multiple comments claim Tesla’s ADAS has far more serious crashes and fatalities than competitors; others counter that Tesla has more equipped cars, so denominators matter.

Remote assistance & true autonomy

  • Debate over how much Waymo relies on remote operators:
    • One side asserts cars are “essentially remotely driven.”
    • Others cite Waymo materials and basic latency constraints, arguing operators only assist in edge cases (construction, blocked roads, problematic passengers) and cannot real‑time “joystick” cars.
    • Extent of remote involvement remains unclear; all agree some human-in-the-loop exists.

Security, crime & personal safety

  • Some worry AVs may stop and freeze when harassed, unlike a human who might “gun it” to escape.
  • Others feel safer than in Uber/public transit: no risk of driver assault, lots of cameras, heavy logging.
  • Hypothetical abuse scenarios (carjackings, homeless sleeping in cars, cones trapping vehicles) are discussed; mitigations suggested include account bans, remote monitoring, sending staff, or driving to hubs/police, but details are speculative.

Economics, pricing & labor impacts

  • In SF/LA, pricing reports vary: sometimes near UberX parity, sometimes 20–100% higher; surge patterns may differ.
  • Some are willing to pay extra for cleanliness, no small talk, and perceived safety; others emphasize long‑term pressure on taxi/ride‑hail driver incomes.
  • There’s debate over whether AVs will ever be much cheaper once vehicle, maintenance, lidar, and supervision costs are fully loaded.

Urbanism, transit & societal impact

  • Strong split between excitement about the tech and concern it will further entrench car‑centric cities and justify underinvestment in public transit.
  • Some argue robotaxis are cheaper than building rail in the US; others say externalities (roads, health, pollution, sprawl) aren’t priced, making that comparison misleading.
  • References to critical videos/articles (e.g., “self‑driving will destroy cities”) reinforce worries about a “self‑driving dystopia,” even if the tech works well.