Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
raggi
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
raggi
5d ago
Similar reflection, I ran `kitten __benchmark__ --render` in rune, the CPU time spent was 1:55. I ran the same in a libghostty based terminal emulator and spent 0:44 on CPU. I say this only because yes you can do engineering to meet the ben
2.
▲
by
raggi
5d ago
The build time claim in the blog post is dubious, part of the problem is CGO isn't fast, but also if build time was really a motivator the null build path is entirely unoptimized for objects with long build times: cached null (no chang
3.
▲
by
raggi
17d ago
I have a friend whose wife has strong sight challenges. He once swapped a much newer and more powerful card with me for my last matrox card, iirc it was a millennium ii. The matrox utilities included with the drivers had one of the best des
4.
▲
by
raggi
21d ago
always have! our darwin and windows clients are closed source, but they wrap the oss implementation in github.com/tailscale/tailscale and you can see and even use all the same hooks yourself. the control plane is closed source, bu
5.
▲
by
raggi
28d ago
> But, at the same time. A design that requires everyone to implement their own protocols and everyone to refix the same bugs in their own compositor is inherintly bad. Consider that if every DE wrote their own Xorg implementation the st
6.
▲
by
raggi
28d ago
Nice. XWayland has been a key transitional piece we'll still need for a while.
7.
▲
by
raggi
1mo ago
https://www.jeremykun.com/2024/05/04/fhe-overview/#the-highe... > Fourth, there is a bandwidth concern. FHE encryption schemes generally increase the size of the data being encrypted, and the user mus
8.
▲
by
raggi
1mo ago
SQLite has an online backup API as well, but it is slower and requires a significant additional page cache cost. The team chose SQLite early on (there are some blog posts about this) and then we vertically scaled against the SQLite architec
9.
▲
by
raggi
1mo ago
We have very good reasons for our checkpointing model, related to our backup + disaster recover strategy, along with resource cost. It might be worth writing about one day, so I'll not give away all the details, but in very short form,
10.
▲
The FastLanes Unified Transport Layout
(blog.dave.tf)
7 points
by
raggi
1mo ago
|
0 comments
11.
▲
by
raggi
1mo ago
One of the strongest teams I worked with, working on an extremely large and ambitious project used to answer a lot of product/executive type questions regarding missing areas that we knew how to author and could safely assume general d
12.
▲
by
raggi
1mo ago
So really the trend I'm talking about here is people turning SSH into a browser, hosting apps behind SSH that expect a much higher volume of TOFU happening, which is a departure from the "first time i setup my vps" kind of ca
13.
▲
by
raggi
1mo ago
i've seen it, so the answer is non-zero
14.
▲
by
raggi
1mo ago
Next step the ads become increasingly sophisticated prompt injection to ensure they make it to the user, but the prices plummet in the meantime because the ads have low efficacy. They get purchased mostly by the scammers and by the time the
15.
▲
by
raggi
1mo ago
When you see people advertising a coffee shop at a conference and people TOFU'ing on conference wifi then plugging in credit card numbers, the picture gets a little more clear.
16.
▲
by
raggi
1mo ago
Fair! When I last harassed Crawshaw about this and we discussed bits, he submitted https://github.com/C2SP/C2SP/blob/main/well-known-ssh-hosts.... Unfortunately neither of us has taken time (AFAIK) to go
17.
▲
by
raggi
2mo ago
sshfp is not PKI. It's an option and it is off by default in ssh(1). In practice no one actually deploys it, exe.dev, terminal.shop, jobs.{whoever.com}, etc. I've yet to see an in the wild deployment. The aforementioned sites let
18.
▲
by
raggi
2mo ago
here, less than most, but look for ssh agents on terminal.shop, steal credit cards on jobs endpoints, perform identity theft on exe.dev, whatever you put on there
19.
▲
by
raggi
2mo ago
Time for your regular reminder that ssh has no PKI and is trivial to mitm during tofu.
20.
▲
by
raggi
2mo ago
fwiw, we have been working on increasing modularity options in the client and a substantial volume of features can now be built out of the clients, see https://github.com/tailscale/tailscale/tree/main/fea
21.
▲
by
raggi
2mo ago
The mental model of slow decay into copyable is complicated. The code base is already a wash with contributions that have low copyrightability in US case law anyway, things derived directly from external architecture or documentation in bar
22.
▲
by
raggi
2mo ago
Parse for what? The model has “arbitrary understanding” of “arbitrary input”. The filter is unbounded and the only actually safe result is to filter everything.
23.
▲
by
raggi
2mo ago
with LLM architectures I think that’s true, and we don’t have anything looking particularly competitive for large scale use atm I also don’t think this is about mixing, the LLM part of the problem doesn’t have determinism around the boundar
24.
▲
by
raggi
2mo ago
Honestly we should just do this. Maddy and Stalwart have cheap enough concurrency and good enough scalability they could easily delay SMTP accepts server side for a time delay based on a combination of a local and global heuristic. We could
25.
▲
by
raggi
2mo ago
This presentation wasn’t too bad in terms of us vs theming, but in general throughout the lifetime of the project there’s been a strong us vs them rhetoric. I think it’s working as a marketing tactic to some extent but there are better, alb
26.
▲
by
raggi
2mo ago
In my experience once you get to the point where you run out of space in the glob you’re often suffering with poor performance from spawning children as well and it’s time to move to a more formal program even if it’s a script, writing out
27.
▲
by
raggi
2mo ago
in zsh you can just write: for x (*.sh); echo "before $x after" or for x in *.sh; echo "before $x after" or for x (*.sh) { echo -n "before "; echo -n $x; echo " after" }
28.
▲
by
raggi
2mo ago
there's tons of frustratingly equally bad precedent. for some reason it also seems like a lot of this companion software from oems is often written by part time contract / interns. years ago there was a classic example of iirc a l
29.
▲
by
raggi
2mo ago
Most variants don't, Alpine in fact does not, nor does the uclibc shell script, nor the commonly copied in implementation in many busybox environments. Reference: https://gitlab.alpinelinux.org/alpine/aports/-
30.
▲
by
raggi
2mo ago
Yes
More ›