HackerTrans
TopNewTrendsCommentsPastAskShowJobs

dmarwicke

no profile record

comments

dmarwicke
·6 месяцев назад·discuss
2FA publishing still doesn't work for me. just use legacy tokens at this point, gave up trying to figure out what's wrong
dmarwicke
·6 месяцев назад·discuss
npm's package.json and package-lock.json get out of sync constantly on my team. at least go only has one file to mess up
dmarwicke
·6 месяцев назад·discuss
this is just optimizing for token windows. flat code = less context. we did the same thing with java when memory was expensive, called it "lightweight frameworks"
dmarwicke
·6 месяцев назад·discuss
does it handle skewed distributions? faker's always been useless for this - like, your test data ends up with everyone having 5 orders when real data is all long tail
dmarwicke
·6 месяцев назад·discuss
how does this decide what's safe to delete? i've nuked docker caches before and broken builds in annoying ways
dmarwicke
·6 месяцев назад·discuss
curious what the token costs look like on a real codebase. opus ain't cheap and C++ headers get big fast
dmarwicke
·6 месяцев назад·discuss
we had to restrict ours to views only because it kept trying to run updates. still breaks sometimes when it hallucinates column names but at least it can't do anything destructive
dmarwicke
·6 месяцев назад·discuss
couldn't find anything about invalidation in the docs. how does that work? usually where these abstractions fall apart for me
dmarwicke
·6 месяцев назад·discuss
does this end up flagging legit packages that just have 'ai' or 'gpt' in the name? feels like half of pypi would trigger at this point
dmarwicke
·6 месяцев назад·discuss
curious about the startup latency in practice. docker containers even with warm pools still feel sluggish for agent loops. e2b does firecracker and it's noticeably snappier
dmarwicke
·6 месяцев назад·discuss
how well does the flatten() translation work in practice? every time i've used localstack or similar the queries work locally then break in subtle ways once deployed
dmarwicke
·6 месяцев назад·discuss
the sql-first thing is interesting. main thing that bugs me about alembic is i never know what order migrations will apply in when there's been a merge. how does jetbase handle branching?
dmarwicke
·6 месяцев назад·discuss
hit this with support ticket filtering. llm kept missing weird edge cases. wrote some janky regex instead, works fine
dmarwicke
·6 месяцев назад·discuss
does this work with multidimensional or just 1D? polars had the same limitation, ended up just sticking with numpy
dmarwicke
·6 месяцев назад·discuss
why postgres for this? feels heavy for a queue. tried something similar with redis and it was way simpler
dmarwicke
·6 месяцев назад·discuss
does this handle the thinking blocks that claude puts in? those break json.parse constantly when it streams reasoning before the actual response
dmarwicke
·6 месяцев назад·discuss
22gb for mostly text? tried loading the site, it's pretty slow. curious how the query performance is with this much data in sqlite
dmarwicke
·6 месяцев назад·discuss
does this actually fix metadata filtering during vector search? that's the thing that kills performance in pgvector. weaviate had the same problem, ended up using qdrant instead
dmarwicke
·7 месяцев назад·discuss
does this do continuous batching or just static? couldn't tell from the code
dmarwicke
·7 месяцев назад·discuss
how are people syncing these? i just have a cron job running overnight and it feels dumb. tried debezium but it was overkill