Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
WhyNotHugo
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
61.
▲
by
WhyNotHugo
2mo ago
How does it handle fixed-size epubs and (most important) how would you expect it to handle it?
62.
▲
by
WhyNotHugo
2mo ago
Where do you download the OED dictionary? I've never found a source for it, and assumed it was not available publicly.
63.
▲
by
WhyNotHugo
2mo ago
I also found all existing e-reader software to be lacking, and all I really wanted was a basic reader. I ended up writing my own with Rust and MyPDF (the latter doing all the heavy loading). The hardware is great, but the software is pretty
64.
▲
by
WhyNotHugo
2mo ago
While op uses systemd/udev's internal property mutation mechanism to configure seats, not that sway (and likely other compositors) allow you to just configure the device-to-seat assignment in your configuration or even at runtime.
65.
▲
by
WhyNotHugo
2mo ago
Yup, and it's quite non-trivial. The typical GTK application out there can't handle multi-touch and can rarely even handle several mouse events (e.g.: mouse-wheel scroll while dragging), so I doubt they have full blow support for
66.
▲
by
WhyNotHugo
2mo ago
In fact, you can also have a different touch input devices per seat! I'm not aware of actual hardware that would make this feasible, but if you invent a touchscreen which recognises between two people's different fingers, you coul
67.
▲
by
WhyNotHugo
2mo ago
TLDR: "we're not in favour of banning our competitor's products, but we do advocate banning hardware exports to foreign countries where competitors are located". There's also a very strong implicit double-standard i
68.
▲
by
WhyNotHugo
2mo ago
You're forgetting about ASML, which is European and makes the actual machines to produce a huge portion of the world's high-end chips.
69.
▲
by
WhyNotHugo
2mo ago
Perhaps it was a niri-specific thing (although they claim it's KDL), but it rejected simple strings without quotes.
70.
▲
by
WhyNotHugo
2mo ago
I wouldn't call KDL "established"; it's honestly pretty niche. It looks _similar_ to pre-existing configuration formats, but KDL is very picky about syntax. I.e.: single word string MUST be quoted. In this same space, h
71.
▲
by
WhyNotHugo
2mo ago
Python went from setup.py to pyproject.toml, but pyproject.toml declares a build-system, which is another package which all the complex logic from setup.py. Granted, it's a "simpler" config syntax, but the total system comple
72.
▲
by
WhyNotHugo
2mo ago
> Entertainment and culture exports are still effectively zero (like, what, three blockbuster films?) where the US, Japan and Korea define pop across the globe. And this is really sad, because they have thousands of years of cultural he
73.
▲
by
WhyNotHugo
2mo ago
Pricing is actually far cheaper than that. There's two tiers of pricing: Chinese and US. If you sign up with non-Chinese phone number, you're bucketed into US, you get US prices, can pay only in USD and with American credit card n
74.
▲
Email Patch Review Tool for Thunderbird
(mccd.space)
2 points
by
WhyNotHugo
2mo ago
|
0 comments
75.
▲
by
WhyNotHugo
2mo ago
> I won’t lose any sleep at the loss of such scum but the general principle seems a bit strange. That's generally key in making a precedent. The first case is someone nobody really cares for, but it's built a precedent where th
76.
▲
by
WhyNotHugo
2mo ago
> Gaming PCs also require specialized knowledge, more maintenance, etc etc. If you want to build it yourself: sure. But less technically inclined folks can just buy one pre-assembled from a computer shop.
77.
▲
by
WhyNotHugo
2mo ago
'for' loops in Rust do the same: they create an iterator and then iterate over that. You can write the exact same loop with `let mut iter = v.iter(); while Some(x) = iter.next()`. 'for' loops in Rust are purely syntax
78.
▲
by
WhyNotHugo
2mo ago
> There isn't a straightforward way using standard POSIX tools to share a directory with another user. * chmod lets you share with everyone * addgroup and chown let you share with a specific group of users.
79.
▲
by
WhyNotHugo
2mo ago
We had Linux phones. I learnt Python+Qt coding on a Nokia N900 (the N9's predecessor). I must emphasise on the "coding on" part. I would ssh into the phone and use it as a regular Linux box. Something which the article omits
80.
▲
by
WhyNotHugo
2mo ago
Quick Alpine container with the current directory mounted as the current directory: docker run --rm -it -v $(pwd):/src -w /src alpine sh Replace alpine with your favourite Linux distro or image. Note entirely perfect, but
81.
▲
by
WhyNotHugo
2mo ago
> And most Linux distributions make it really hard to disable external device access for individual users... For any distro that relies on the traditional plugdev group, just don't add those users to the plugdev group. Which would b
82.
▲
by
WhyNotHugo
2mo ago
> Trying to use markdown files to limit access should never be treated as a security guarantee at all. This is akin to politely asking guests to to steal your jewels. If your jewels are in the living room, and your guests have unfettered
83.
▲
by
WhyNotHugo
2mo ago
I appreciate the sentiment, but can't agree fully. I used vanilla JS for many years before AngularJS even existed (and I also tried AngulasJS when it was the new thing). Vue is just a huge convenience over raw JavaScript for large, com
84.
▲
by
WhyNotHugo
2mo ago
The first item is "a file in the repository which contains secrets was read by the model". Well yeah, obviously, that's pretty much intended behaviour. The LLM can't determine that there are secrets in your file before r
85.
▲
by
WhyNotHugo
2mo ago
> My opinion is that claude code uses more tokens simply because Anthropic makes more money that way and forces people into their subscriptions. OTOH, this makes typical subscriptions usages consume more tokens, which are included in the
86.
▲
by
WhyNotHugo
2mo ago
I move into a neighbourhood of new houses in 2007. One of the guys there worked IT at a university and set up a mailing list of the neighbourhood. It was used successfully for all sorts of coordination, neighbourhood watch, internal news,
87.
▲
by
WhyNotHugo
2mo ago
The grass proves that it's actually fertile lands, and that there's resources for keeping it growing. Historically, using land with such properties for grass instead of crops was as sign of wealth, especially for large estates.
88.
▲
by
WhyNotHugo
2mo ago
> the US president is allowed to bypass Congress. This is the key difference between presidential system and parliamentary system. In a parliamentary system, the head of state answers to the parliament. In a presidential system, the pres
89.
▲
by
WhyNotHugo
2mo ago
I think it's mostly the ramp-up time, but ChangXin Memory Technologies (CXMT) is basically aspiring to do just this.
90.
▲
by
WhyNotHugo
2mo ago
I made my own subagent implementation in a couple of hours using Pi itself. It aligns with my needs better than any existing plugin, none of which seems to be what I was looking for. You don't _need_ to use someone else's plugin i
More ›