HackerTrans
TopNewTrendsCommentsPastAskShowJobs

vohvae

no profile record

Submissions

PEP 659: Specializing Adaptive Interpreter

mail.python.org
2 points·by vohvae·vor 5 Jahren·0 comments

comments

vohvae
·vor 5 Jahren·discuss
I don't think Andrew Yang's meme received much propagation to come under the types of memes the article is referring to.

One more property I think is very relevant to the types of memes referred to by the article is that these memes want to spread at the exclusion of all others or any variation.

What stood out to me with respect to that event is that while many memes were thrown about, some memes had to be clarified to death without having any effect on the outrage while others continued to be thrown about without requiring any clarification despite being dog whistles for things significantly worse than their seemingly innocuous wording.
vohvae
·vor 5 Jahren·discuss
I am mostly ambivalent towards this. The change seems to be in response to what a vocal proportion of twitch's users want which makes this a logical step for twitch to take.

Though I am worried that the mentioned "ally" tag will just enable cheap and pointless virtue signalling. I would prefer that the tags have the restriction that they be based on some verifiable categorisation such as nationality, physically identifiable race or similar.
vohvae
·vor 5 Jahren·discuss
Thanks for pointing this out! Until now I had been under the impression that sapient and sentient mean very similar things with a very fuzzy boundary. This does clarify a few things regarding their usage.
vohvae
·vor 5 Jahren·discuss
I don't know much about UK politics, but it is good to see Animal rights being taken more seriously. But I am uncomfortable with the usage of the word sentient here since the word implies a lot more than stopping mistreatment which seems to be the actual intent here.

Taken to its logical conclusion, "Animals to be formally recognised as sentient beings" should outlaw their slaughter for food or other products and much more essentially including whatever rights humans have.

I personally feel words with strong meaning are thrown around too carelessly these days (maybe longer but I wasn't alive then) weakening their meaning and making it more difficult to capture nuance or clarity in conversation or writing.
vohvae
·vor 5 Jahren·discuss
I haven't looked at the benchmark implementations but one particular area I've heard other languages to lag behind java is cost of allocation.

Since openjdk has had to cope with lack of (user defined) value types and the garbage heavy ecosystem it has a very well optimised GC for handling heap allocations.

I wonder if the results will be different if other language benchmarks (C++ or rust) use different allocators (eg: bump allocator, per request collectors) for cheaper allocation.
vohvae
·vor 5 Jahren·discuss
Google search is definitely not dying since for many people what you can find on google is _the internet_. But I personally no longer find google search as useful as I used to find it before. I use plain google mostly to get quick answers for programming problems.

Anything else I search for gets a quick "site:<authoritative_website>" to filter out the cruft. For random subjective topics "site:reddit.com".
vohvae
·vor 5 Jahren·discuss
This looks like a good gesture from Moderna, but I do not think it will be of much help for most the developing world since the low temperatures needed for the storage of the vaccine are not feasible for the distribution infrastructure of these countries.
vohvae
·vor 5 Jahren·discuss
I just tried out tsdx. The node_modules folder took ~180MB of space in a fresh project. I don't know if I am doing or judging things wrong, but this seems to be way too much if someone just wants to write some hobby project exploratory code.

I am probably not the target demographic for tsdx or other bootstrap libraries in the ecosystem but I would love to have something "simple" with good defaults which I can debug if something breaks to make CLI scripts to familiarise myself with the language and ecosystem.

Currently the best option for me is to manually setup the directory structure and build commands which is not fun for mostly simple throwaway code.

golang and rust seem to have things right in this regard though rust build artifacts can get quite big.