Hacker News, Distilled

AI powered summaries for selected HN discussions.

Page 795 of 835

The Delusion of Advanced Plastic Recycling

Overall sentiment on plastic & recycling

  • Widespread skepticism that plastics recycling (especially “advanced”/chemical) has delivered on promises; many see it as a PR strategy to justify continued plastic production.
  • Several argue plastic recycling has encouraged guilt-free consumption rather than reduction.
  • Metals recycling is generally seen as genuinely beneficial; plastic and paper recycling much more dubious.

Pyrolysis / “advanced recycling”

  • Critics: Pyrolysis/waste‑to‑energy is net energy negative as a recycling method once you include energy to process and handle the waste; worse than burning plastic directly.
  • Others counter strictly thermodynamically: plastic combustion + pyrolysis products are net exothermic; the issue is economics, pollution, and “pretend recycling,” not physics.
  • Environmental concerns: toxic byproducts, local air quality, and heavy dependence on scrubbers and caustic chemicals to capture halogens.
  • Some note industry support (oil/chemistry lobbies) is likely about preserving the social license for plastic production, similar to carbon‑capture narratives.

Mechanical recycling and limits

  • Mechanical recycling works best for clean, simple streams (e.g., some PET); mixed, post‑consumer plastics are too contaminated and mostly “downcycled” into low‑grade products.
  • Reported effective recycling rates for plastics are low (often ~5–10%); much “recycling” is exported, landfilled, or incinerated.

Landfills vs burning

  • Strong camp arguing modern landfills are one of the least-bad options: plastics are relatively inert, carbon stays sequestered, and hazards are concentrated, not dispersed.
  • Others flag landfill issues: heavy metals, halogenated polymers, and long‑term leakage; argue you then need good upstream sorting anyway.
  • Burning plastics is seen by some as the “minimum” useful option (use them as fuel with good scrubbers); others say it’s “the dumbest thing” because it converts sequestered carbon to CO₂.

Microplastics, health, and other pollutants

  • Some stop recycling due to evidence that mechanical recycling plants shed large amounts of microplastics into water.
  • Concerns about endocrine disruption, fertility, and obesity links are raised but not resolved; consensus is that harm is plausible and under‑studied.
  • Major source highlighted: tire wear, especially from heavy vehicles and EV SUVs.
  • PFAS in “compostable” or paper food packaging is called out as a serious, often hidden, problem.

Reduce vs reuse vs system change

  • Thread repeatedly returns to: the only robust answer is “use far less disposable plastic.”
  • Individual hacks: reusing containers, avoiding takeout or choosing better packaging, carrying own utensils/containers.
  • Counterpoint: individual action has limited impact without regulation, taxes based on pollution, deposits for problematic polymers, and producer responsibility.

Packaging, materials, and design

  • Packaging is framed as much about marketing/ad space as protection.
  • Alternatives discussed: cardboard, molded pulp, glass, metals, standardized reusable containers; but constraints exist (e.g., salad/leafy greens shelf life).
  • Some engineers describe choosing durable plastics to maximize product lifetime, given poor end‑of‑life options; a few suggest metals (aluminum/zinc) instead, with RF design complications.

Urban form, transport, and consumption

  • One subthread argues dense cities inherently drive single‑use packaging and high energy infrastructure; advocates more dispersed living with local production and PV.
  • Others reply that cities enable less car use, efficient buildings, and bulk markets; sprawl implies more driving and land use. No consensus; debate remains unresolved.

Accounting tricks and “green” labeling

  • Discussion of “mass balance” and creative accounting: small shares of recycled feedstock are re‑labeled into batches marketed as “100% recycled,” similar to carbon offsets and financial tranching.
  • General distrust of warm‑and‑fuzzy environmental claims without rigorous verification.

Drugmaker to testify on why weight-loss drugs cost 15x more in the US

US vs. Rest-of-World Pricing

  • Many note Ozempic/GLP‑1s are dramatically cheaper in Japan and Canada despite no subsidy, suggesting US prices are not cost-driven.
  • Explanations offered:
    • US willingness/ability to pay more (“because we can,” higher incomes, middle/upper-class demand for “cosmetic” drugs).
    • Rich US market allegedly subsidizing poorer countries and price‑controlled systems; others call this narrative propaganda to justify gouging Americans.
    • Some argue the real driver is that US patients/insurers don’t collectively negotiate prices, unlike other countries.

Pharma Economics & R&D

  • One side: drugs like Ozempic may cost billions to develop; high US prices are needed to recoup R&D plus many failed projects, in a power‑law “one big hit pays for many misses” model.
  • Counterpoints:
    • Back‑of‑envelope math using reported Ozempic sales suggests recouping R&D quickly, even at far lower prices.
    • Studies and political statements cited claiming production cost is a few dollars per month; markup seen as excessive.
    • Debate over how large the “failed drug” multiplier really is (4x vs 10x+), and whether risk is as high as claimed.

US Healthcare Structure & Policy

  • Lack of universal/price‑regulated healthcare is seen as a key enabler: access is gated by money, and negotiation power is fragmented.
  • Some argue lawmakers created the patent/monopoly framework and could change it (e.g., stronger price controls, public funding, prizes/advance market commitments).
  • Others warn that aggressive price controls could undercut innovation globally, given US outsized role in funding biomedical R&D.

Patents, Monopolies, and Fairness

  • Patents give time‑limited but powerful monopolies; ideas floated:
    • Expire patents after a profit cap, or add obligations to serve the public good.
    • Governments could buy out blockbuster drugs and make them cheap or generic.
  • Tension between shareholder capitalism (“maximize returns”) and societal goals (“necessary medicines shouldn’t be priced like luxury goods”).

Obesity, Behavior, and Public Health

  • Some argue the deeper issue is US obesity driven by processed foods, alcohol, and environment; suggest nutrition policy, education, or even bans/taxes.
  • Strong pushback against prohibition‑style solutions: mixed historical record, crime and black‑market side effects.
  • Ethical debate over how far socialized systems should go in policing behavior to protect collective healthcare budgets.

Markets, Regulation, and Importation

  • Basic Econ 101 view: high prices signal high value; controls distort supply and innovation incentives.
  • Critics respond that this fails for life‑saving drugs with government‑granted monopolies.
  • Noted that arbitrage (buying drugs abroad and reselling in US) is blocked by FDA/legal restrictions; removing these could rapidly compress US prices.

Java string interpolation feature has been cancelled

Status of the feature

  • The change is the removal of String Templates from the JDK 23 preview, not a permanent cancellation.
  • Several commenters call the HN title misleading; the feature is still being redesigned and is expected to return in a later release.
  • Contrast is drawn with Go generics: here the feature wasn’t repeatedly rejected, but pulled once a late design flaw was found.

Technical reasoning and new direction

  • Real-world use (notably in an internal project) revealed fundamental flaws in the “template processor” model.
  • The team now favors “StringTemplate literals” without an explicit processor abstraction.
  • New direction: StringTemplates remain distinct from plain Strings to preserve security properties and allow sensitive APIs to treat them specially.
  • This likely shifts responsibility to libraries to add overloads that accept StringTemplates directly.

Security and API design concerns

  • Interpolation is seen as a major source of vulnerabilities (e.g., SQL injection).
  • A type-safe template model can allow validation and constraints that concatenation cannot, especially for domain-specific outputs.
  • Example discussed: a db.query(STR."...")-style API where templates are accepted safely, but raw Strings are discouraged or deprecated.
  • Some worry about “automatic conversion” from strings to templates being confusing or unsafe; preferences lean toward explicitness.

Syntax debates and community feedback

  • Lots of public feedback focused on syntax details (e.g., backslash vs dollar), often seen as emotional and unhelpful.
  • Language designers characterize this as “anti-helpful” bikeshedding that buried more substantive feedback.
  • Nevertheless, the ultimate rollback is attributed to deeper model flaws, not syntax complaints.

Comparisons with other languages

  • JavaScript and C# are cited as having well-established models (template literals, interpolated strings, tagged templates, custom handlers).
  • Scala/Kotlin-style simple interpolation is suggested as an 80% solution that Java rejected as “not ambitious enough.”
  • Some speculate Java overreached by trying to “solve” SQL/XML/JSON generation in the core feature instead of leaving it to libraries.

Templating vs. built-in language features

  • Some argue server-side interpolation is essential and should be as ergonomic as in other ecosystems.
  • Others say HTML/SQL templating is already well covered by libraries (e.g., JSP, JTE, kotlinx.html) and doesn’t need core language support.
  • There’s debate over whether embedding control flow and expressions in templates belongs in separate template languages or directly in Java.

Java vs. Kotlin and broader language design

  • Thread drifts into “why use Java over Kotlin” debates: Kotlin seen as nicer syntactically, with null safety and property syntax; Java defenders point to records, immutability, and adequate modern ergonomics.
  • Some feel Java syntax evolution (raw strings, templates) has become overly complex and “C++-like,” others report enjoying “modern Java” as-is.

EU Council has withdrawn the vote on Chat Control

Why the vote was withdrawn

  • Proposal came from the Belgian Council presidency; Belgian media coverage and domestic political backlash made it politically toxic.
  • Several large member states (notably Germany, plus others listed in the thread) signaled they would vote against, so the measure was seen as dead on arrival.
  • High‑profile party figures in Belgium publicly called it dangerous after press attention, increasing pressure to pull the vote.

EU process and transparency

  • Many commenters criticize opaque Council/Commission dynamics and indirect accountability (commissioners nominated by national governments, Council composed of national executives).
  • Others note there is some transparency: Council and Parliament votes are public and can be tracked and used for future voting decisions.
  • Debate over whether the Commission or Council is really “to blame”; some stress the Commission pushes what the Council wants, others see specific commissioners as prime movers.

Privacy, surveillance, and civil‑liberties concerns

  • Broad agreement that “chat control” is mass surveillance: scanning all private communications, not targeted warrants.
  • Strong historical sensitivity in former authoritarian states (Stasi, Soviet bloc) drives resistance; many fear normalizing tools that future governments could abuse.
  • Widespread skepticism of “think of the children” framing; many see it as emotional blackmail to sell a general‑purpose surveillance infrastructure.

Technical and effectiveness critiques

  • Client‑side scanning is seen as functionally breaking end‑to‑end encryption by inserting a monitoring layer before encryption.
  • Commenters argue real abusers will route around scanning (alternative tools, steganography, different channels), leaving mostly innocent users surveilled and harassed by false positives.
  • Police in at least one member state reportedly say they already have sufficient tools with warrants; critics see the proposal as unnecessary and dangerous.

Political dynamics and future outlook

  • Hungary’s upcoming Council presidency worries many; it has signaled it will advance related legislation, though Parliament remains a separate hurdle.
  • Some note that opposition spans parts of both left and right; pro‑surveillance push is often associated with centrist “law-and-order” and security establishments.
  • Many expect repeated reintroduction under new branding, citing a pattern of “try until it passes” with surveillance laws.

Citizen and technical responses

  • Suggested actions: pressure national governments and MEPs, fund civil‑rights NGOs, track vote records.
  • Technically minded users discuss self‑hosting, federated platforms, and non‑EU infrastructure as ways to route around future mandates, while acknowledging law and enforcement still matter.

Swapping GNU coreutils for uutils coreutils on Gentoo Linux

Maturity and Compatibility of uutils coreutils

  • Several commenters warn against casually replacing GNU coreutils, citing real bugs in uutils (e.g., mishandled SIGPIPE leading to visible exceptions instead of clean exits).
  • uutils is said to reuse the GNU coreutils test suite, but people note that behavior compatibility in odd edge cases is still lacking.
  • Suggestions to stress-test uutils by building large, crusty projects (Chromium, Gentoo itself) or by systematically comparing results against GNU coreutils.

Gentoo and Filesystem Layout (/bin, /usr/bin, usr-merge)

  • Tangent debate about merged /bin//sbin//usr/bin//usr/sbin.
  • Some dislike the merge, see it as needless churn and “less Unix-like,” and fear breakage (scripts with hardcoded paths, boot issues, initramfs complexity).
  • Others argue the historical separation was mostly about old hardware constraints; symlink-based merging is practical and used by other Unix-like systems (e.g., Solaris).
  • There’s disagreement on whether this actually causes concrete problems versus being largely a philosophical dispute.

Licensing: GPL vs Permissive Reimplementations

  • Strong debate over whether permissively licensed reimplementations (MIT/BSD) of GPL tools are “disrespectful,” “dangerous,” or a healthy alternative.
  • Pro-GPL side: GPL protects the commons, forces corporate contributions, and underpinned Linux’s success; permissive licenses enable proprietary forks and “free riding.”
  • Pro-permissive side: permissive licenses ease commercial use, contribution from employers, and don’t reduce existing freedoms; users can always keep using the free versions.
  • Broader discussion of how corporations exploit different licenses (Linux vs BSD vs macOS, consoles, drivers).

Motivations for uutils and Rust Rewrites

  • Stated motivations include memory safety, learning Rust, avoiding GPL in some environments, and escaping “autotools hell.”
  • Critics see “rewrite X in Y” as low-value compared to solving new problems, and worry more about compatibility than safety for tools like cp/ls.
  • Supporters welcome alternatives, argue multiple implementations improve portability and standards compliance.

Gentoo Packaging and Alternatives

  • Some Gentoo users say the article’s method (overwriting the coreutils package) is a hack; suggest using package.provided, virtuals, or installing under /usr/local plus careful unmerging.
  • Others respond that this was an intentional, quick experiment on a personal system, not a proposal for official Gentoo policy.

Nobody knows what's going on

Limits of First-Hand Experience & Tourism

  • First-hand experience can mislead, especially when extrapolating from brief or touristy exposure to an entire country or culture.
  • Tourists are shielded from jobs, housing, politics, and daily frictions; even “living like a local” as an expat remains a distinct experience.
  • Some argue daily life feels similar across rich cities; others insist countries differ drastically in law, housing security, and social norms.

Experts, Expertise Boundaries, and Trust

  • Many advocate listening to multiple domain experts and looking for consensus, while recognizing experts can disagree or be wrong.
  • A recurring problem: non-experts can’t easily see where an expert’s competence ends, and experts often overextend into adjacent domains.
  • Suggestions for spotting real expertise: plain-language explanations, track record, active work in the field, and clustering of peer recognition—though others warn this can drift into appeal to authority.

Media Accuracy, Gell-Mann Amnesia, and LLMs

  • Many recount incidents where coverage of topics they know well was rife with errors, leading to doubt about other reporting.
  • This is repeatedly linked to the “Gell-Mann amnesia” effect: noticing errors in your domain, then trusting the rest of the paper anyway.
  • Some note internal technical docs and books by domain experts tend to be more accurate than quick-turn articles.
  • LLM “hallucinations” are compared to human overconfident commentary; some find everyday human misinformation more concerning.

Misinformation, Quotes, and the Internet

  • The fake Orwell quote in the article is seen as meta: the false line will likely spread more than the correction.
  • Participants point out how spurious attributions proliferate online and even appear in AI outputs.
  • Several note that usefulness or resonance of a quote often matters more to people than factual attribution.

News, Politics, and Personal Well-Being

  • Some reduce news consumption, claiming most events don’t affect daily life and that this lowers stress.
  • Others argue major events and political shifts (wars, pandemics, democratic backsliding) have real consequences, so total disengagement is risky.

Science, Engineering, Markets, and Crypto

  • Engineering and hard sciences are praised as domains where reality “pushes back” (planes fly or don’t, GPS works or not), providing partial antidotes to epistemic fog.
  • Stock-market coverage is criticized as post-hoc storytelling over mostly noisy, information-driven price movements.
  • Crypto discussion highlights confusion about its value, security, and use cases; proponents stress decentralized, trustless infrastructure, critics emphasize scams, repeated historical mistakes, and limited non-speculative utility.

Epistemic Humility and Coping Strategies

  • Several emphasize living with uncertainty: holding beliefs lightly, reading broadly, comparing multiple sources, and accepting many questions lack clear answers.
  • Some adopt systematic skepticism frameworks, treating all media as potential propaganda and analyzing patterns rather than trusting any single narrative.

Hypermedia Systems

Overview of Hypermedia Systems & htmx

  • Book is praised as one of the clearest, most useful web-dev resources; many read it end-to-end and even bought hard copies despite it being free.
  • It explains hypermedia concepts, how htmx extends the web’s hypermedia model, and introduces Hyperview for mobile.

What htmx Changes

  • Framed as extending HTML so:
    • Any element can issue HTTP requests.
    • Any event can trigger them.
    • Any HTTP method can be used.
    • Any part of the page can be replaced (dynamic transclusion).
  • This allows SPA-like interactivity while mostly staying in HTML and server-side templates.

DSLs, Hyperscript, and “Optionality”

  • One side: htmx attributes (hx-*) and Hyperscript form a new DSL and effectively become non-optional once you adopt htmx.
  • Other side: Hyperscript is separate and optional; htmx itself is “just attributes” over standard HTML and can be combined with vanilla JS, Alpine, or others.
  • Critics note the attribute syntax is ad-hoc and mixes styles (JS-like, custom mini-languages).

Server vs Client Complexity & Performance

  • Supporters: shifting logic to the server simplifies systems, avoids duplicated logic, and can be faster and smaller than JSON+SPA in practice; cited experiments show reduced data transfer and quicker first render.
  • Skeptics: every interaction can become a round trip and demands more stateful backends; concern about overloading routes with both full-page and fragment responses.

Use Cases, Limits, and Architecture

  • Seen as ideal for:
    • Internal tools and “mildly dynamic” sites.
    • Enhancing classic server-rendered apps (e.g., Flask, Django).
  • Acknowledged as not ideal for:
    • Very interactive, client-state-heavy UIs (3D models, complex visualizations, long-lived SPA-style apps).
  • Recommended pattern: mix approaches—htmx for CRUD/UI chrome, targeted JS or full SPA on particularly dynamic pages, JSON APIs where needed.

URLs, State, and Mobile Behavior

  • Some report difficulty with deep-linking and restoring state (infinite scroll, blog subpages) and with mobile browsers killing tabs and breaking htmx-driven state.
  • Others argue these are solvable with polymorphic responses, HX-Request detection, and URL history (hx-push-url), cautioning against over-engineered JS/service-worker solutions.

Learning Curve & Ecosystem

  • Docs are seen as better reference than tutorial; the book and external tutorial series fill that gap.
  • General sentiment: htmx is not “the future of frontend” but a powerful, simple default for many common use cases.

X debut 40 years ago (1984)

Origins, Versioning, and Naming

  • X originated in MIT’s Project Athena (1984); protocol reached X11 in 1987 and has stayed there due to an extension mechanism instead of breaking changes.
  • Comparisons to XML/SGML and Kerberos highlight that long-lived “version 1.x/5” protocols are common when extensibility is built in.
  • X is emphasized as a protocol, not an API; APIs change, but the protocol’s stability lets decades‑old clients still draw on modern servers.
  • The name came from incrementing “W”; people joke about the missing “Y” system and various failed X12/Y/Z successors.

Wayland, Apple, and X’s Obsolescence

  • Some say they’ll only be “ready” for Wayland decades from now, joking about Linux desktop timelines.
  • One view: X has been obsolete for some uses since the 1990s; Apple evaluated X for OS X and chose a different stack (Display PostScript/Quartz), citing multiple technical shortcomings.
  • A counterpoint stresses NeXT’s earlier choice and notes X outlived many competitors.
  • Wayland is seen as mature enough for ChromeOS (including its main UI now), WSL2, and automotive UIs, but some doubt it will still dominate by the time X is finally retired.

Labs, Hardware, and Early Linux Experiences

  • Many reminisce about first seeing/using X on university workstations, X terminals, and early Linux boxes (Slackware, FreeBSD) with stacks of floppies and tiny CRTs.
  • Stories highlight shared Unix labs with Sun, HP, SGI, VAX, and early Linux systems, and how that culture has largely vanished as personal laptops replaced labs.
  • Networked X terminals (thin clients) impressed people: multiple users on a single SPARC or VAX, playing Netrek/Xpilot and doing remote logins.

Protocol Design, Networking, and Audio

  • X’s network transparency and performance tricks (event shedding, zero‑round‑trip window creation) are praised; it enabled remote displays and even remote Quake.
  • Lisp (CLX) and CLU bindings are mentioned, with old compilers recovered and runnable on emulators.
  • Lack of a built‑in audio protocol is seen as a missed opportunity; attempts like NetAudio/NAS existed but never gained traction, partly due to technical flaws and lack of integration.
  • There’s tension noted between integrating services (like audio) into X/Wayland vs keeping them as separate network services.

CRT Modelines, Tapes, and Tooling

  • Configuring XFree86 modelines on CRTs was tricky; people recall warnings about potentially damaging monitors. Some report no issues, others describe real hardware risks.
  • Advanced users overclocked CRTs via custom modelines to get very high resolutions.
  • “Bring a tape for the code” sparks discussion of 9‑track and QIC cartridges, DEC tapes, and early distribution practices.
  • X predates modern VCS tools like CVS, but older systems such as SCCS were available and mentioned.

Legacy and Sentiment

  • X is repeatedly described as ancient yet still functional and surprisingly fast.
  • People recall massive Xlib manuals, steep learning curves, and a mix of frustration, admiration, and nostalgia.
  • Overall tone: respect for X’s longevity and capabilities, coupled with recognition of its warts and the complexities of moving on to successors like Wayland.

Can men live without war? (1956)

Is War Inevitable? Human Nature vs. Culture

  • Many argue war is rooted in evolved traits: territoriality, greed, in‑group/out‑group bias, leader worship, and enjoyment of harming out-groups.
  • Others stress cultural contingency: organized, industrial war requires institutions, ideology, and business interests, not just biology.
  • Several note every known culture has had violence, but some commenters think education and cultural evolution could still substantially reduce it, though skeptics call this utopian.

Leadership, Politics, and Aggressive Minorities

  • A recurring view: a small minority is highly territorial/power-seeking; a larger group admires and follows them.
  • There is concern that modern systems (elections, media, parasocial worship) systematically elevate such personalities.
  • Some suggest redirecting dominance drives into sports, business, or intellectual competition, though others doubt this scales or is widely rewarded.

Nuclear Weapons, Deterrence, and Proxy Wars

  • Thread debates “war between nuclear powers doesn’t happen”: examples like India–Pakistan and Sino‑Soviet clashes are cited as counterexamples, though they remained conventional.
  • Mutually Assured Destruction (MAD) is seen as the main brake on great‑power war, but multiple close calls and differing doctrines (tactical vs strategic nukes, “warning shots”) make long‑term stability uncertain.
  • Ukraine is widely framed as a dangerous proxy conflict: some expect any large Ukrainian advance into Russia could trigger nuclear use; others highlight declared Western “consequential” but non‑nuclear responses.
  • Some think nuclear weapons are a net deterrent; others see them as an inevitable, potentially species‑ending risk.

Guns, Force, and Monopolies on Violence

  • One subthread imagines a world ban on firearms enforced by a global force.
  • Critics say this only centralizes power, is technically unenforceable (DIY weapons, 3D printing), and leaves populations vulnerable to that monopoly.
  • Debate over whether firearms “equalize” power (weak vs strong, citizens vs state) versus clearly increasing everyday lethality and social harm.

Economics, Scarcity, and Alternatives to War

  • Several frame war as rational under scarcity: if force is cheaper than trade, war happens.
  • Others argue post‑WWII economic systems (e.g., trade regimes) shifted incentives toward buying resources instead of conquering, though this is criticized as naïve given coups, sanctions, and power imbalances.
  • Scarcity of land and resources is seen as a deep driver; proposals include eliminating artificial scarcity, long‑term depopulation via choice, or off‑planet expansion—none seen as near‑term fixes.

War, Progress, and Future Trajectories

  • Some maintain war strongly drives technological and social change and national modernization; others counter that this “progress” is often catastrophic.
  • A few foresee eventual cultural maturation to a “pacified humanity” as the only sustainable long‑term path; others see periodic great wars as a near‑natural cycle.
  • There is modest discussion of personal exit (emigration, expat life) as a future response to conscription or nationalist mobilization.

EasyOS: An experimental Linux distribution

Security model & running as root

  • Default user is root, which many find “odd” or “nuts” from a traditional security standpoint.
  • Some argue root vs non-root barely matters on single-user machines: most valuable data is in the user’s home, and compromise of that user is already catastrophic.
  • Others stress “security is an onion”: user separation, reduced attack surface, and immutable system layers still help.
  • EasyOS mitigations: each non-root app runs as its own user, with optional containers and per-app isolation; several see this as closer to mobile-style, untrusted-by-default apps and more secure than the usual Linux desktop model.
  • Critics worry about easier system breakage and unintended destructive actions when logged in as root.

Ease of use, GUI-first philosophy

  • Project aims for “everything via GUI, no CLI.”
  • Some welcome this, recalling classic Mac OS where GUI-only was workable.
  • Others argue heavy GUIs with many checkboxes will become complex, and that investing in CLI skills is more durable and powerful.
  • Broader Linux UX debate emerges: discoverability and “just add an account” workflows vs deeply technical docs and CLI-heavy culture.

Installation, ISOs, images & VMs

  • EasyOS intentionally avoids ISO; uses IMG-like disk images instead.
  • Many object: ISO is a de facto standard, works with VMs, Ventoy, USB flashing tools, and hybrid ISOs already cover USB use.
  • Others side with the “ISO must die” stance, saying ISOs are legacy optical-media artifacts and disk images are more natural for modern boot and atomic systems.
  • Practical complaint: raw images are harder to plug into VirtualBox/VMware than ISOs; some users reconsider trying EasyOS because of this.

Relationship to Puppy Linux & live/persistent use

  • EasyOS originated from earlier Puppy/Quirky work but is now distinct, focused on containers and experimental ideas.
  • Several recall Puppy fondly as an early small live distro with persistence and “run in RAM” behavior; EasyOS is seen as a spiritual successor exploring new mechanisms.

Atomic / image-based design

  • Thread connects EasyOS with Guix, Nix, Silverblue and general move toward atomic upgrades and image-based systems.
  • Benefits cited: reliable rollbacks, easier reproducibility, safer updates (power loss mid-update just falls back to previous deployment).

Website & overall reception

  • Website praised for being minimal, text-centric, and free of cookie popups; others find it visually dense and hard to scan.
  • Overall tone: curiosity and respect for the experimental design, mixed with skepticism about running as root, nonstandard install formats, and GUI-everything ambitions.

Safe Superintelligence Inc.

Mission and comparison to OpenAI

  • Many see the lab as a spiritual successor or reaction to OpenAI: similar ambition around AGI/ASI, but explicitly “safety‑first” and non‑product focused.
  • Several point out differences: OpenAI started with broad “benefit all humanity” language and some openness; this lab begins already closed and explicitly anti–open‑sourcing frontier models.
  • Some read the “no product cycles, no management overhead” line as a veiled critique of what went wrong at OpenAI and large labs more generally.

Business model, funding, and talent

  • Commenters doubt how a non‑product, safety‑focused lab will pay for massive compute and top researchers without promising big returns; others respond that the founders’ reputations will unlock huge funding anyway.
  • Suggestions include: cloud credits, big‑tech patronage, a future standards/protocol business, or “safety as infrastructure” adopted or mandated across the industry.
  • Debate on whether top talent really follows money vs mission; several say many strong researchers would join for ideological reasons.

Safety, alignment, and feasibility

  • Strong disagreement on whether “safe superintelligence” is even coherent:
    • One side: safety is about preventing extinction‑level misuse or loss of control; like nuclear safeguards, formal benchmarks and protocols are essential and currently missing.
    • Other side: true guarantees are impossible (halting‑problem style); any sufficiently capable system can circumvent guards or be misused by bad actors.
  • Repeated theme: safety work often ends up improving capabilities (example: RLHF), so “safety vs speed” may be a false dichotomy.
  • Some argue the real unsafety comes from human incentives (corporations, governments, criminals) using powerful but non‑sentient systems, not from rogue agentic AIs.

AGI timelines and technical debates

  • Timelines are all over the map: from “many lifetimes away” to “this decade is >50% likely.”
  • Sharp split on whether current LLM‑centric, transformer‑based approaches can reach AGI:
    • Critics: current models lack true world models, grounded perception, and efficient learning; they’re “glorified next‑token predictors.”
    • Supporters: prediction/compression itself forces internal models of the world; emergent behaviors already look like broad intelligence.

Power, geopolitics, and centralization

  • Widespread concern that any superintelligence—“safe” or not—will massively centralize power in whoever controls it (states, megacorps, possibly specific countries).
  • Some argue open‑sourcing frontier systems is too dangerous because it empowers authoritarian regimes; others counter that central monopolies are even more dangerous.

Economic and social impacts

  • Several commenters think near‑term risks (job loss, surveillance, propaganda, automated cybercrime) are more pressing than extinction scenarios.
  • Others see AI as potentially reducing inequality and increasing abundance, if broadly accessible; skeptics reply that past tech mostly enriched a small elite first.

Branding, naming, and presentation

  • The plain HTML site and ultra‑minimal announcement draw praise as refreshingly focused, but also jokes about “Poe’s law” and cultish, ironic naming (“Safe,” after “Open” and “Stability”).
  • Some view “Safe” in the name as virtue‑signaling or marketing; others say it’s appropriate if safety really is the central mission.

The return of pneumatic tubes

City- and Facility-Scale Logistics Ideas

  • Several commenters imagine citywide or intra-city tube networks for parcels, food, or trash, sometimes as smaller, freight-only “hyperloop”-like systems.
  • Existing concepts cited: Swiss Cargo Sous Terrain (underground robot tunnels, criticized for a decade of PR with no deployment) and Pipedream (small underground robot delivery system near Atlanta).
  • Alternatives proposed: small electric vehicles on rails in narrow tunnels; lightweight elevated rails for delivery pods. Many note that human couriers on mopeds remain cheaper in practice.

Robots vs Tubes in Hospitals and Buildings

  • Some argue modern semi-autonomous robots could replace pneumatic tubes for small-item transport.
  • Counterpoints: robots share space with patients and staff, can be safety hazards or nuisances in crowded corridors, and are slower than tubes.
  • Pneumatic systems are seen as fast, low-friction once installed; cited cost for a large hospital is roughly a few hundred thousand dollars, though remodel costs are unclear.
  • Overhead rail systems are suggested but raise fire-safety and structural concerns.

Trash Management via Pneumatic Networks

  • Roosevelt Island’s underground pneumatic trash system is praised for eliminating sidewalk piles.
  • Broader NYC trash issues discussed: lack of alleys, on-street parking, billing and illegal dumping complications, and tradeoffs between temporary piles and permanent dumpsters.
  • Some advocate Amsterdam-style underground bins; feasibility in dense, utility-cluttered sidewalks is debated.

Data Transport and “Sneakernet” Humor

  • Thread veers into jokes about using capsules full of SSDs, jumbo jets, and even container ships or spacecraft as ultra–high-bandwidth “links.”
  • Rough back-of-envelope comparisons note far higher data density for SSDs than tapes, and enormous potential bandwidth of freight aircraft or ships.

Historical and Ongoing Uses

  • Examples span: old mail railways and city mail tubes (NYC, London, Chicago), hospital specimens, trash systems, banks and Costcos moving cash, retail stores dispatching goods, Belgian car inspections, and department-store change handling.
  • One view claims hospitals are the only modern use, but multiple comments contradict this with current examples.

Home and Niche Applications

  • Interest in residential systems like Laundry Jet (pneumatic laundry chute) and central vac analogies; concerns center on blockages, reliability, and fire code.
  • Some fantasize about home tubes for pizza or packages, and about aesthetic devices like solari boards/flip-disc displays.

Technical Notes

  • For lab samples (e.g., blood), damage is attributed more to acceleration/deceleration at tube endpoints than to top speed, limiting practical operating speeds.

The demise of the mildly dynamic website (2022)

Lambda, CGI/PHP, and “mildly dynamic” pages

  • Many argue Lambda’s core appeal (give code a URL, scale to zero) is conceptually similar to old CGI/PHP, but with cloud billing and automation.
  • Others push back: CGI/PHP still require an always-on server you maintain, while Lambda bills only when code runs and auto‑scales across a cluster.
  • Several note that Lambda’s practical complexity (API Gateway, IAM, VPC, limits, cold starts) is far higher than “drop a PHP file on a server.”

Ops burden, security, and maintenance

  • One camp says self‑hosting is easy: minimal hardening, occasional apt upgrade, maybe unattended upgrades; uptimes of years are common.
  • Critics counter that “years of uptime” usually means missed security updates, growing exploit risk, and eventual painful OS/API deprecations.
  • DDoS and spam (especially on comment sections) are cited as modern threats that push people away from running their own dynamic stacks.

Cost and scaling tradeoffs

  • Some emphasize how cheap traditional VPS/bare metal is, especially at scale, and cite large companies saving big by avoiding clouds.
  • Others argue that for side projects and low-traffic apps, Lambda and similar services often cost effectively $0 and remove sysadmin overhead.
  • Concerns are raised that autoscaling FaaS can turn a DDoS into a catastrophic bill, though WAF and rate limiting can mitigate this.

Static hosting, CDNs, and “mild” dynamism

  • Many participants have migrated to static sites (S3+CloudFront, GitHub Pages, Cloudflare Pages) for near-zero maintenance, low cost, and strong resilience.
  • Dynamic features are often offloaded to third‑party services (Disqus, analytics, OAuth) or implemented as client-side JS hitting APIs.
  • CDNs are seen as a big driver of static-first design; mildly dynamic behavior is layered on via JS or edge functions.

Frameworks, JS vs PHP, and complexity

  • Some lament that simple one‑file PHP scripts have been replaced by heavy JS frameworks and brittle toolchains.
  • Others argue modern JS frameworks plus managed hosting are actually less overall work than maintaining LAMP stacks, especially for teams.
  • Debate over vendor lock‑in: proponents say code is mostly plain JS and portable; skeptics point to provider‑specific IAM, networking, and services.
  • A niche defends old-school PHP/CGI (and even SSI) as still viable for small, long‑lived mildly dynamic sites; others never want to touch PHP again.

Fast Crimes at Lambda School

Alleged misconduct and outcomes

  • Many commenters see the school as fundamentally fraudulent: inflated job-placement stats, misleading marketing, and attempts to collect ISAs from students who didn’t get qualifying software jobs or were already employed in unrelated tech roles.
  • Several describe chaotic operations: frequent curriculum changes mid-cohort, unpaid or minimally qualified TAs substituting for instructors, and weak or absent career services.
  • Reported actual placement rates (sub‑30% in one claim) are viewed as disastrously low for the promised outcomes.

ISAs, debt, and “indentured servitude”

  • Strong disagreement on whether income-share agreements are predatory.
    • Critics call them a form of indentured servitude or “buying equity in a person,” especially when enforced against non‑tech jobs or aggressively sold to vulnerable groups.
    • Defenders argue ISAs are safer than traditional loans (capped, income-based, downside insurance) and popular with some low‑income students.
  • There’s broader frustration that traditional student loans can also be opaque, non‑dischargeable, and harmful.

Bootcamps vs university vs self-teaching

  • Many say bootcamps can work for a minority: motivated, often already-educated career switchers using them as a forcing function and peer group.
  • Others argue most people accepted into mass‑market bootcamps are not well-suited, and that community colleges or CS degrees provide better signaling, structure, and teaching.
  • Some insist calculus and CS theory are essential for “computer science”; others say most industry work is CRUD/web dev and never uses advanced math.

Who can learn to code and what’s actually hard

  • Split views:
    • One side: “Programming is not that hard; most people can learn basics with time and support.”
    • Other side: professional software engineering is cognitively demanding, especially debugging, taming complexity, architecture, collaboration, and constant frustration.
  • Grit, persistence, and tolerance for prolonged confusion are repeatedly cited as more decisive than raw intelligence.

Pedagogy, selection, and scale

  • Experienced instructors stress: good teaching is hard; most ed‑tech and bootcamps show little understanding of pedagogy or how to measure learning.
  • Selective programs with strong filtering and realistic promises (e.g., some other bootcamps) are reported to do better, but are hard to scale profitably.
  • Several argue that overhyping “anyone can become a developer in X months” plus VC pressure for hypergrowth leads directly to misrepresentation and harm.

Even Apple cannot explain why we need AI in our lives

Apple Intelligence: Substance vs. Hype

  • Many see Apple’s AI reveal as underwhelming and derivative, more like catching up to others than defining a new category.
  • Some criticize the use of the old “for the rest of us” tagline given the modest, partly third‑party feature set and lack of live demos.
  • Others argue the on‑device / Private Cloud Compute approach and UI integration are meaningful, especially for text summarization, proofreading, and notification/email triage.

OpenAI Integration, Privacy, and Branding

  • Dispute over how much Apple depends on OpenAI:
    • One side says Apple Intelligence itself runs on Apple’s stack, with ChatGPT only invoked explicitly for certain tasks and behind a permission prompt.
    • Others counter that from a user perspective, Siri using ChatGPT is Apple using OpenAI and that the “Apple Intelligence” branding may overstate how private/local everything is.
  • Commenters note Apple makes ChatGPT involvement clearly labeled, with indications it will ask permission each time.

Do Consumers “Need” AI?

  • Strong view that everyday consumers don’t need AI; code completion and writing tools help professionals more than typical phone users.
  • Another camp says most people find current UIs like “casting spells,” and natural‑language interfaces could finally make complex tasks approachable “for the rest of us.”
  • Some phone owners report barely using existing AI features like Circle to Search or enhanced assistants.

AI Hype Cycle, Bubble Talk, and Nvidia

  • Several commenters argue current AI products are underwhelming relative to 2023 hype (AGI, mass job loss, “insane value”), leading to a sense the bubble is nearing a pop.
  • Others say there’s no objective sign of a pop yet; valuations and GPU demand keep rising.
  • Debate on whether Nvidia’s dominance is justified:
    • One side likens it to being the sole locomotive manufacturer in a railroad boom, with cloud providers profiting by renting GPUs.
    • Skeptics question whether end customers are yet making enough money to justify the massive infrastructure spend.

Use Cases, Limits, and Risks

  • Recognized strong uses: code completion, debugging help, drafting/corporate writing, search‑as‑conversation, article summaries, basic image generation.
  • Serious concerns about hallucinations/bullshitting and the danger of over‑trust, especially in high‑stakes areas like banking.
  • Debate over LLMs in education: some see “cheating,” others see tools akin to calculators or encyclopedias, useful if paired with critical thinking.
  • Broader view: LLMs likely won’t be AGI soon but may become the primary interface to services, displacing many traditional apps and web UIs.

Software design gets worse before it gets better

Rewrites vs Incremental Change

  • Strong debate over rewriting from scratch vs gradually transforming existing systems.
  • Some argue whole‑app rewrites are almost never justified; targeted refactors and partial replacements are different and often preferable.
  • Others note cases where years spent “bashing legacy into shape” feel like sunk‑cost fallacy, and a clean reimplementation (guided by tests) might have been better.
  • Several point out that test suites can be incomplete or encode unintended “bug‑as‑feature” behavior, limiting how far you can safely rewrite.

Microservices, Architecture, and Org Decisions

  • Microservices are seen as an infra/org choice that heavily constrains software design, often adopted prematurely as a “template” rather than a design.
  • Some argue infra/devops/org structure are themselves part of software design, especially in distributed systems.
  • Merging microservices or building new services “next to” legacy code is suggested as a practical middle ground.

The “Trough of Despair” and Redesign Risk

  • Many agree that moving from a local maximum to a better design requires a temporary dip: intermediate states are messier and more complex.
  • Others say the article conflates “less improvement than hoped” with “actually worse,” and that intermediate states are transitions, not designs.
  • Advice: prototype, draw current vs ideal vs feasible architectures, and build “stairs” before fully descending into the trough.
  • A frequent failure mode: orgs fund the “make it worse” step but never the “make it better” step.

What Counts as “Better”?

  • For developers: easier to change, clearer architecture, lower marginal cost for future features, less technical debt.
  • For users: simpler, more predictable tools that support goals with minimal friction.
  • Tension noted between developer convenience (e.g., cross‑platform stacks, Electron) and user experience (native, “Mac‑like” apps).
  • Some emphasize measurable qualities (maintainability, reliability, performance, security) over aesthetic purity.

People, Incentives, and Skill

  • Frequent job‑hopping and weak career paths make long‑term refactoring less appealing; companies often under‑reward those who stay.
  • Outsourcing and “cheap labor” are blamed for poor design that later must be redone by smaller, more skilled teams.
  • Others note high salaries do not guarantee high skill; tooling and abstraction can mask incompetence.

Metaphors: Local Maxima, Activation Energy, Evolution

  • Commenters liken redesign to leaving a local optimum, chemical activation energy, and simulated annealing.
  • Debate over whether real‑world evolution is monotonic; consensus that non‑monotonic change (taking short‑term “worse” steps) is often necessary to escape design traps.

Astronomers see a black hole awaken in real time

Cosmic and Geologic Timescales

  • Several comments wish for a clear, visual timeline of cosmic and geologic events (seconds → hours → years → Myr → Gyr).
  • People note that many astronomical “dates” are imprecise in absolute years but fairly precise in percentage terms (e.g., universe age estimates with ~0.2% tolerance).
  • A resource with timelines of the universe and geologic time is shared, with mention of underlying datasets.

What “Black Hole Awakening” Means

  • Clarified that this is not a black hole forming, but a previously quiet supermassive black hole starting to actively accrete matter, brightening its galaxy.
  • Some criticize the headline as over-dramatic; suggest “transitioning from dormant to actively feeding” or “galaxy brightens, likely due to central black hole.”
  • Acknowledgment that the explanation is still tentative; authors themselves note alternative possibilities like an unusual tidal disruption event or a new phenomenon.

Skepticism, Inference, and Evidence

  • Multiple comments stress we’re inferring activity from changing brightness, not directly “seeing” the black hole do something.
  • One person points out that by the same logic black holes themselves were once “just a theory,” but others counter that we now have strong observational evidence, including imaging and gravitational-wave detections.

Real-Time Observation and Relativity

  • Debate over the phrase “in real time” for an event 300 million light-years away.
  • One side: in our reference frame it is happening “now,” because information cannot arrive faster than light; all observation is delayed, so this is as real-time as anything.
  • Others argue ordinary language treats “real time” as nearly simultaneous with the event, so the term is misleading.
  • Extended discussion on reference frames, the lack (or presence) of a global timeline, and how cosmic microwave background measurements relate to defining “rest.”

Black Holes, Galaxies, and Energetic Events

  • Discussion of timescales: supernova core-collapse happens in seconds; supernova-to-black-hole days; galaxy-scale rearrangements millennia or longer (noted as rough, possibly outdated).
  • Misconceptions about spiral vs elliptical galaxies and universe rotation are challenged as oversimplified or incorrect.
  • Questions about black hole mergers: consensus that they merge, emitting huge energy as gravitational waves, but trapped matter does not “escape” except via Hawking radiation-like processes.

Life, Civilizations, and Cosmic Perspective

  • Speculation about galaxies being irradiated by such events and about observers elsewhere currently seeing Earth’s dinosaur era.
  • Long subthread on whether life and intelligent life (especially humanoid) are likely common, with arguments both for and against extrapolating from a sample size of one.

Practicalities and Miscellaneous

  • Several users report geolocated redirects to the German version of the ESO page and share region-specific or language-stable URLs.
  • Some meta-discussion about humor on Hacker News and whether lighthearted simulation/NPC jokes are appropriate.

Neofetch developer archives all his repositories: "Have taken up farming"

Overall reaction to archiving and “taken up farming”

  • Many express happiness and respect for the decision, contrasting it with more abrupt, mysterious disappearances of past OSS figures.
  • Several note that his GitHub activity had already dropped sharply around 2021; mass‑archiving is seen as a clear signal he’s done, not an invitation to keep expecting maintenance.
  • Some view “taken up farming” as possibly tongue‑in‑cheek shorthand for “doing something totally non‑tech,” but others take it literally; the thread does not conclusively clarify this.

Open source maintenance, expectations, and burnout

  • Multiple comments highlight how much responsibility falls on solo maintainers in popular OSS, often without funding.
  • There’s debate over whether “OSS needs more people” vs. “OSS should be treated as free code with no right to demand maintenance.”
  • A recurring theme: users feel entitled; maintainers feel guilt or harassment; this leads to burnout and eventually hard exits like archiving everything.
  • Some argue the healthiest model is: publish code, expect users to fork if they need ongoing work.

Farming: romance vs. reality

  • Strong split:
    • Enthusiasts describe farming/homesteading as life‑changing, grounding, and more meaningful than abstract software work.
    • Skeptics emphasize long hours, low margins, high capital costs, exposure to weather, machinery, and injury.
  • Many stress the difference between:
    • Industrial/commercial farming (complex, capital‑intensive, risky, often thin profits).
    • Hobby/small‑scale or semi‑retirement farms (more lifestyle than livelihood, often subsidized by savings or another job).
  • Several note farmers must be polymaths (mechanics, vets, accountants, marketers) and sometimes engage with futures/forward contracts and subsidies; others push back that many small farmers don’t actually trade futures themselves.

Lifestyle, meaning, and “touching grass”

  • Numerous anecdotes from people who left high‑pressure tech jobs for lower‑paid but saner roles or rural life, often reporting better work‑life balance and mental health.
  • Others admit trying farming or rural living, finding it instructive but ultimately preferring city life or intellectually demanding software work.
  • Common advice: if you romanticize farming, try working on a real farm first; breaks and experimentation are valuable, but so is understanding the hard parts.

Project continuity and alternatives

  • Some wish the projects had been transferred to an org; others think clear archival is kinder than half‑abandoned repos.
  • Community points to alternatives to his tools (e.g., neofetch forks/clones, lists of “fetch” utilities) for users who still need similar functionality.

Beyond velocity and acceleration: jerk, snap and higher derivatives (2016)

Hierarchy and terminology

  • Discussion centers on the derivative chain: position → velocity → acceleration → jerk → snap → crackle → pop → higher orders.
  • Several comments note jerk is intuitive (change in acceleration), while snap and above feel harder to reason about and are rarely named in education.
  • Some question the value of naming beyond “n‑th derivative” versus using special terms.

Physical meaning and real-world relevance

  • Multiple commenters affirm jerk is very noticeable: sudden changes in acceleration cause discomfort, seasickness, and the “drivers-ed stop” feeling.
  • Electric vehicles and trolleybuses are cited as having high jerk because torque can change quickly, making starts and stops harsh for standing passengers.
  • Higher derivatives (snap, etc.) are acknowledged as existing but their distinct perceptual or design importance is less clear or “unclear.”

Vehicle comfort, tracks, and rides

  • Road and rail design use smooth curvature transitions (e.g., Euler / clothoid spirals) to limit jerk entering/exiting curves, improving comfort and safety.
  • Roller coasters and lifts/elevators explicitly manage jerk to control rider sensation; preferences for “gut-feel” vs smooth rides reportedly vary by region and customer.
  • Train engineering and automotive suspension/braking systems are said to account for jerk to reduce vibrations, wear, and passenger discomfort.

Engineering, control, and simulation

  • Jerk-limited profiles are used in robotics, CNC/grinding machines, 3D printers, and self‑driving cars to avoid oscillations, reduce fatigue, and smooth motion.
  • Multi-body simulations model displacement/velocity/acceleration; jerk and above are often inferred for vibration and durability analysis.
  • Other cited uses: N‑body simulations, missile/inertial navigation (with Kalman filters), Apollo lunar landing guidance, social media trend “jerk” to detect sudden boosts from influencers.

Skepticism and debate

  • Some argue higher derivatives add little beyond mathematical convenience; others counter with practical examples (vibration, comfort, wear).
  • Debate over “speed kills” vs acceleration vs jerk: consensus in thread leans toward acceleration (force) determining injury, with jerk important for comfort and whiplash-like effects.
  • There is discussion on whether acceleration can be truly discontinuous in reality; opinions differ, often invoking scale (macroscopic vs microscopic).

Integrals and conceptual notes

  • Time-integrals of position (absement and higher) are mentioned in control (integral of error over time) and flow/valve examples.
  • Several comments note that people often know the concepts (jerk, integral error) long before learning these specific terms.

Ask HN: What happens when I click "request for quote" on your SaaS?

What “Request a Quote” Usually Triggers

  • Submission goes into CRM or a queue (sometimes Slack) as a “marketing website lead.”
  • SDR/BDR qualifies: are you a real buyer, what segment, what role, what budget.
  • Then you talk to an Account Executive / sales rep; larger deals go to more senior reps.
  • Call covers requirements, usage, integrations, security/legal, and whether you fit “enterprise.”
  • Output ranges from an email with a number to a formal PDF quote or multi‑page draft contract.

How Enterprise Pricing Is Set

  • Many use an internal spreadsheet/calculator extending public tiers.
  • Pricing usually follows the public model but with: higher minimums, per‑module fees, usage tiers, or transaction ladders.
  • Discounts depend on volume, contract length, payment terms, and how “sticky” you’re likely to be.
  • Sometimes early SaaS literally “makes prices up” until they learn the market.

Lead Qualification and “Bad Leads”

  • Many website leads: comparison shoppers, no budget, junior researchers, spam, bots, even kids.
  • Some vendors decline to quote if fit is wrong or budget obviously too small, sometimes redirecting to self‑serve.
  • Others explicitly use minimum commitments to push customers to really adopt the product.

SSO and the “SSO Tax” Debate

  • Many SaaS products gate SSO (especially SAML/enterprise IdPs) behind enterprise plans.
  • Defenders: SSO is complex, high‑touch, tied to compliance, and one of the few levers enterprises reliably pay for.
  • Critics: gating OIDC/SSO is a security risk and pure price discrimination; small firms also need SSO and MFA.
  • Some propose: free standard OIDC/“Sign in with Google/Microsoft,” paid for custom/complex SSO projects.

Why Vendors Hide Prices

  • Reasons cited: multivariate pricing, bespoke integrations, legal/security work, and enterprise procurement expecting to negotiate big discounts.
  • Some say public “list prices” had to be removed because procurement wanted 50% off that, not off the real target price.

Customer Frustration and Ethics

  • Many buyers see “request a quote” as a red flag for high‑pressure, opaque, and discriminatory pricing.
  • Complaints: time wasted just to discover a wildly unaffordable number, email spam afterward, and SSO locked behind a saleswall.
  • Others argue the complexity and negotiation culture of enterprise make some form of sales‑led quoting unavoidable.