Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
telios
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
telios
8mo ago
Deadlock is in active development, so... I think so?
2.
▲
by
telios
11mo ago
I thought NATS was a project under the CNCF, with the trademarks being transferred to the Linux Foundation, which is why they couldn't relicense NATS, and why they can't relicense it in the future.
3.
▲
by
telios
2y ago
That is what the article claims, but... I see it as left-aligned. Firefox 129.0.1 on MacOS.
4.
▲
by
telios
2y ago
I'm not sure that's stopped them; it would be trivial for them to find some reason, as long as it leads to the conclusion they want.
5.
▲
by
telios
3y ago
Largely in part due to regulatory capture; it is not necessarily innate of a government to cause this. Maybe restrictions on how corporations are able to influence governments to act against their constituency might solve this problem, rath
6.
▲
by
telios
3y ago
Very rarely do you need to pass around a lifetime-bound struct or enum that isn't _also_ meant to be temporary. (One database pool has database connections lifetime bound, for example, but the pool still owns the connection.) When I
7.
▲
by
telios
3y ago
But the commits will still be there even if the refs aren't, afaik? GitHub doesn't run gc that often.
8.
▲
by
telios
3y ago
A dry bar lacks water, not ethanol, and dry cleaning still uses liquids, so I'd argue even the colloquial definition is water.
9.
▲
by
telios
3y ago
The reason it works is because they've done the research to make it work. It isn't a coincidence DAUs increase. I think it is important to recognize that it can impact you, and take steps to account for that, even if - or especi
10.
▲
by
telios
3y ago
For reference, the terminology they use for their API is "guilds." But since most other services in the space used the term "servers" (e.g. TeamSpeak and Mumble, where they were actual distinct servers), I can see why th
11.
▲
by
telios
3y ago
The post makes mention of B-tree de-duplication that is present in PostgreSQL 13, but not 12, the version they're using; at the same time, they're noting that the vast majority of values in some of their foreign key indexes are NU
12.
▲
by
telios
3y ago
I don't quite follow the algorithm here, but I'm not sure the `gensym` Rust implementation works as expected. `RefCell::clone` does not return a copy of the reference; it returns a new `RefCell` with the current `RefCell`'s
13.
▲
by
telios
3y ago
Something tangentially related, but something I'm unaware of - if I do run into an ICE on nightly, what is the current process for reporting that? I've run into one or two before (and I've generally assumed it was me doing s
14.
▲
by
telios
3y ago
I've used diesel async for personal projects, and while it does work seamlessly with diesel at times, there are some rough edges - I ran into an odd issue where the order of imports from the base diesel package and diesel async mattere
15.
▲
by
telios
3y ago
Now, I'm not a lawyer, so this isn't legal advice, but... A derivative work is not fair use. If you end up with a significant portion of another person's program in yours, (such that a substantial portion of your program is
16.
▲
by
telios
3y ago
BlurHash kind of does, but also doesn't, as I believe the canvas image API respects the colorspace of the loaded image; you can see this by generating a blurhash from a (non-sRGB) image and comparing it between the browser and server i
17.
▲
by
telios
3y ago
Oddly, it looks like colorspace issues, as I've had these issues intermittently with BlurHash.
18.
▲
by
telios
4y ago
I created my own web framework (< https://docs.rs/under/latest/under/ >) to address some of my own perceived issues with a lot of current rust web frameworks - typing issues being one of them. Personally