Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
b0a04gl
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
b0a04gl
1y ago
why tf is git still running submodule hooks during clone at all. like think. youre cloning a repo which you didnt write it or audit it. and git just... runs a post checkout hook from a submodule it just fetched off the internet. even with t
2.
▲
by
b0a04gl
1y ago
what if we can make these diagrams synchronized with reality. you need the diagram to pull from the same source of truth as your actual infrastructure - whether that's terraform state, kubernetes manifests, or service discovery. that
3.
▲
by
b0a04gl
1y ago
this is another layer of abstraction on top of an already broken system. you're running html through an llm to get markdown that gets rendered in a terminal browser. that's like... three format conversions just to read text. the o
4.
▲
by
b0a04gl
1y ago
>before this you had to trust that claude would follow your readme instructions about running linters or tests. hit and miss at best. now its deterministic. pre hook blocks bad actions post hook validates results. >hooks let you build
5.
▲
by
b0a04gl
1y ago
every developer knows safari is the new ie6 but we all just shrug and build native apps anyway because what else are you gonna do. leave 50% of your users on the table. classic embrace extend extinguish but in reverse. embrace web standards
6.
▲
by
b0a04gl
1y ago
10kloc for command line parsing. TEN THOUSAND LINES. pico-args does it in 700 lines and probably handles 99% of real world use cases. compile times go to shit binary size bloats and for some edge case you'll never hit.most CLI tools ne
7.
▲
by
b0a04gl
1y ago
in async code ,errors belong to the task ,not the caller. in sync code ,the caller owns the stack ,so it makes sense they own the error. but async splits that. now each async function runs like a background job. that job should handle its o
8.
▲
by
b0a04gl
1y ago
why is bot detection even happening at render time instead of request time. why can't tell you’re a bot from your headers, UA, IP, TLS fingerprint. imo making it a surveillance. 'you're a bot, ok not just go away, let’s finge
9.
▲
by
b0a04gl
1y ago
provenance model basically turns memory back into a typed value. finally malloc wont just be a dumb number generator, it'll act more like a capability issuer. and access is not 'is this address in range' anymore, but “does th
10.
▲
by
b0a04gl
1y ago
how deterministic is the emit really. if i feed same expression tree twice,same node layout same captures. do i get exact same bytes out every time (ignoring reloc) or not. if output produced is byte stable across runs for same input graph
11.
▲
by
b0a04gl
1y ago
why do fingerprinting always happens right at connection start ,usually gives clean metadata during tcp syn. but what is it for components like static proxies or load balancers or mobile networks ,all of these can shift stack behavior midst
12.
▲
by
b0a04gl
1y ago
what if this wasnt something you add after infra but the checkpoint you start with. right now you spin up a vm or db then wrap vpn or firewall around it. but imagine writing access rules first in way : 'team ml can hit service x'
13.
▲
by
b0a04gl
1y ago
Mitre ATT&CK's T1497.001 (VM Detection) lists SMBIOS checks as a known vector means its open for injection anyways. i did one little expirement on faking VM's powersupply. done it with 'HotReplaceable=Yes' and '
14.
▲
by
b0a04gl
1y ago
ipv6 only machine still reaches ipv4 sites because dns64 upstream is just faking AAAA records ,makes it look like everything is native ipv6. this part of the trick is happening somewhere else which's not controllable. if dns64 breaks o
15.
▲
by
b0a04gl
1y ago
found one more flakiness over cross platform, when seed mt19937 same way on linux and windows, same compiler, same code... but problem is std::random_device or libc internals differ under the hood. some platforms do random_device as true ha
16.
▲
by
b0a04gl
1y ago
no way this delay's about gpus lol. deepseek prob has r2 cooked already. r1‑0528 already pumped expectations too high. if r2 lands flat ppl start doubting. or who knows maybe they just chillin watching how west labs burn gpu money, let
17.
▲
by
b0a04gl
1y ago
this works like functional programming where every symbol is a pure value and operations compose into clean, traceable flows. when you hit an ambiguous step, the model steps in. just like IO in FP, the generative call is treated as a scoped
18.
▲
by
b0a04gl
1y ago
file layout is the interface here lol you can literally walk the pipeline.. lexer parser codegen linker all just sit where they should. the dir was the flow. back then structure = filesystem. we can cd trace src to bin just by lookin at fol
19.
▲
by
b0a04gl
1y ago
when a route doesn't come back as a roundtrip , like you fly LHR > HKG but not the return . how does that usually get handled on your end? do you deadhead back, get reassigned regionally or wait out a layover cycle?
20.
▲
by
b0a04gl
1y ago
they exist because whole language built to treat expressions as firstclass citizens : blocks, ifs, matches, even macros as expressions that return values. so once you internalize that, all these weirdo one liners are artifacts. just artifac
21.
▲
by
b0a04gl
1y ago
image gets compressed into 256 tokens before language model sees it. ask it to add a hat and it redraws the whole face; because objects aren't stored as separate things. there's no persistent bear in memory. it all lives inside on
22.
▲
by
b0a04gl
1y ago
these layouts break kerning rules. render engines expect horizontal flow, steady spacing. but with same sizer or echoed lines, glyph logic goes off path. spacing's no longer font native, it's forced by layout. font stops being jus
23.
▲
by
b0a04gl
1y ago
flows make sense here not just for size but cuz they're fully invertible and deterministic. imagine running same gen on 3 iphones, same output. means apple can kinda ensure same input gives same output across devices, chips, runs. no w
24.
▲
by
b0a04gl
1y ago
seen this pattern a before too. faker holds shape without flow. real tables come from actions : retry, decline, manual review, all that. you just set col types, you might miss why the row even happened. gen needs to simulate behavior, not f
25.
▲
by
b0a04gl
1y ago
how're you handling latency on turn overlaps : buffered stream with early intent cutoff or full duplex with partial decoding?
26.
▲
by
b0a04gl
1y ago
supertokens did the same thing from bengaluru. didn’t start loud. just showed up with clean abstractions that didn’t leak. you could tell someone had wrestled with real auth mess before touching a single line. it worked, across teams, stack
27.
▲
by
b0a04gl
1y ago
lets say if i someone wants to keep using bittorrent dht for peer finding but swap out quic for something else maybe grpc, does the lib support that split clean? asking from a modular embed first tooling pov, where discovery logic needs to
28.
▲
by
b0a04gl
1y ago
i remember koramangala, 5th block specifically, mid 2023. that blue tokai outlet next to roastery was ground zero. half of early stage bangalore was working from there. two pm to six pm you'd overhear: investor calls, pitch deck review
29.
▲
by
b0a04gl
1y ago
i see one crazy real leverage: every prototype built here is a frozen snapshot of someone's product thinking in motion. like u can literally watch how ppl prioritize flows, kill features mid-wireframe, choose friction over flexibility.
30.
▲
by
b0a04gl
1y ago
it's more to do with the obvious economic layer underneath. you give a format new life only if there's tooling and distribution muscle behind it. adobe, apple, chrome, ffmpeg etc may not get aligned at the same time. someone somew
More ›