HN user

recursive4

170 karma
Posts24
Comments79
View on HN
news.artnet.com 10mo ago

Christie's Deletes Digital Art Department

recursive4
47pts31
simonwillison.net 1y ago

Simon Willison: Exploring Promptfoo

recursive4
5pts0
www.youtube.com 1y ago

How DOGE operates; Elon in his own words [video]

recursive4
5pts0
www.youtube.com 1y ago

Jim Simons: Life and Philanthropy [video]

recursive4
1pts0
www.newyorker.com 2y ago

Bots, Mercenaries, and Table Scalpers

recursive4
2pts0
worldcoin.org 2y ago

Worldcoin Foundation open sources core components of the Orb's software

recursive4
3pts0
www.newyorker.com 2y ago

Artist Holding Valuable Art Hostage to Protect Julian Assange

recursive4
2pts1
www.economist.com 2y ago

Why car insurance in America is too cheap

recursive4
2pts0
usps-dtw-staging.centralus.cloudapp.azure.com 2y ago

USPS Deliver the Win: Research Center

recursive4
1pts0
old.reddit.com 2y ago

Production Fuzzy Entity Linking / Disambiguation

recursive4
1pts0
news.ycombinator.com 2y ago

Ask HN: Migrating from Google Domains to Squarespace?

recursive4
1pts10
www.nytimes.com 2y ago

Ghostwriter Returns with an A.I. Travis Scott Song, and Industry Allies

recursive4
1pts0
www.bloomberg.com 3y ago

First NFT Insider-Trading Trial Turns on Art Instead of Stock

recursive4
1pts0
willholley.com 3y ago

The Expected Value of Artificial General Intelligence

recursive4
2pts0
willholley.com 3y ago

ElonJet: Violating the Privacy of Celebrities Is Not Free Speech

recursive4
2pts3
willholley.com 3y ago

Probing Gender Bias in ChatGPT

recursive4
1pts0
news.ycombinator.com 3y ago

Ask HN: Non-profit founders, what was your biggest counterintuitive surprise?

recursive4
2pts1
qql.art 3y ago

Tyler Hobbs' new playground for generative art with P5.js

recursive4
2pts0
www.radicalxchange.org 3y ago

Plural Money, Socially-Provided Goods, and the Principal-Agent Problem

recursive4
1pts0
cointelegraph.com 4y ago

Klima DAO accumulates $100M of carbon offsets, aims to drive up price

recursive4
2pts0
docs.ampled.com 4y ago

Streaming Economy: Defaults and Alternatives

recursive4
1pts0
medium.com 4y ago

The Infrastructure Bill’s Targeting of Cryptocurrencies Makes Americans Poorer

recursive4
13pts5
www.nytimes.com 4y ago

A Terrible Time for Savers

recursive4
3pts1
news.ycombinator.com 5y ago

Unpaid Founders Health Insurance Options?

recursive4
2pts1

My buyers and sellers were heterogenous, so I could not acquire one user and get both personas; I purchased supply which had publicly-measurable demand and resold it below cost (in line with my target CAC) to bring the demand on platform. Once I had aggregated enough demand and developed the demand-side marketing and trust, I brought in the suppliers directly.

Really cool to see this! Building a security scanner specifically for LLM apps feels like an important step given how quickly production AI workflows are proliferating.

What stood out to me in the blog is how the scanner isn’t just a general linting tool — it actually traces inputs and outputs through the code to understand how untrusted user data might flow into prompts, models, and then back into privileged operations. That focus on data flow and behavior rather than just surface diffs seems like a solid way to reduce both blind spots and noise in alerts.

I also appreciate the emphasis on concrete vulnerabilities and real CVEs (e.g., LLM code executing arbitrary commands or translating LLM output directly into database queries) — showing that these aren’t just hypothetical risk categories but things happening in the wild.

A couple of thoughts / questions from my side:

Balancing precision vs noise: The blog mentions tailoring what counts as a real finding so you don’t overwhelm engineers with false positives. It’d be interesting to hear more about how that balance was tuned in practice, especially on larger codebases.

Integration with existing pipelines: I saw the GitHub Action auto-reviews PRs, but how do teams handle this alongside other scanners (SAST, dependency scanners, etc.) without ballooning CI times?

Vulnerability taxonomy: Prompt injection, jailbreak risk, and sensitive information leaks are all big categories, but there are other vectors (RAG-specific issues, tool misuse in agents). Curious how far the scanner’s heuristics go vs where red-teaming still wins.

Overall, a much-needed tool as LLMs go from experiment to core business logic. Would love to hear from others about how they’ve integrated this kind of scanning or what other categories of LLM security risk they’re watching for.

Out of curiousity, how would you steelman the argument that fingerprinting is no different than a store owner, standing behind the counter, taking note of the faces of who enters his store, and maintaining a log?

This might be interesting if it pulled data from Meta properties (e.g. the Instagram accounts I am following) in order to personally contextualize its responses.

Skip hospital doctors because they don't make purchasing decisions. Doctors who own their own practice either outright or as a group partner are actually very easy to interview: in the US (assuming where you're located) there are at least a dozen within each county. Have you tried door-to-door? I helped a friend with healthcare customer discovery interviews for a few months, and it's surprisingly effective.

Here's a question you can ask yourself: "where does my context fall within the distribution of human knowledge?" RAG is increasingly necessary as your context moves towards the tail.

Polars 3 years ago

It unfortunately also exceeded available memory.

A basic approach which worked was sequentially loading each df from the filesystem, iterating through record hashes, and incrementing a counter; however the runtime was an order of magnitude greater than my final implementation in Polars.

Polars 3 years ago

I recently reached the limits of Pandas running on my 2020 16gb M1. Counting the number of times an element appears in a 1.7B row DataFrame using `df.groupby().size()` would consistently exceed available memory.

Rust Polars is able to handle this using Lazy DataFrames / Streaming without issue.