Viewing profile — telios
telios
HN member- Joined
- Fri, Mar 09, 2018, 8:23 PM UTC
- HN karma
- 72
- Public activity
- 32 items
- HN profile
- View on Hacker News ↗
About telios
No profile information was provided.
Recent public activity
-
comment
Comment #46724433
Deadlock is in active development, so... I think so?
-
comment
Comment #45609851
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 …
-
comment
Comment #41283335
That is what the article claims, but... I see it as left-aligned. Firefox 129.0.1 on MacOS.
-
comment
Comment #41249928
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.
-
comment
Comment #39588426
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 a…
-
comment
Comment #39249187
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 exam…
-
comment
Comment #38617360
But the commits will still be there even if the refs aren't, afaik? GitHub doesn't run gc that often.
-
comment
Comment #38296560
A dry bar lacks water, not ethanol, and dry cleaning still uses liquids, so I'd argue even the colloquial definition is water.
-
comment
Comment #37513162
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 tak…
-
comment
Comment #37368382
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 ac…
-
comment
Comment #37300911
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 …
-
comment
Comment #37039998
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…
-
comment
Comment #36964465
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 (…
- comment
-
comment
Comment #35923755
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 import…
-
comment
Comment #35866318
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 th…
-
comment
Comment #35267784
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) …
-
comment
Comment #35266549
Oddly, it looks like colorspace issues, as I've had these issues intermittently with BlurHash.
-
comment
Comment #34928547
The research article is located here: https://www.pnas.org/doi/full/10.1073/pnas.2101084119 >; if you're interested in what "likely" means in this context, it may be beneficial to …
-
comment
Comment #34810084
> We know that moving `Arc ` will not change the location of the `Db` object, but there is no way to communicate this information to rustc. There is! `std::pin`[0] does just this (…
- comment
-
comment
Comment #33726533
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 o…
-
comment
Comment #33282046
Are you sure this is the same code that triggers the vulnerability? Is the double `update` in the post itself unimportant (i.e., first updating with a 1-byte string, then the 4,294…
-
comment
Comment #33196411
I don't think that's what they're claiming at all. I think what they're claiming is that it's far easier for individuals to be corrupt if their CEO is similarly corrupt, which is a…
-
comment
Comment #32833773
As far as I can tell, this can't actually work, because the return type of `fn next(&'a mut self)` should actually live for some lifetime `'b` that is shorter than `'a`, instead of…