HackerTrans
TopNewTrendsCommentsPastAskShowJobs

sekia

no profile record

comments

sekia
·3 ปีที่แล้ว·discuss
Although I'm not very interested in the US politics, it looks to me that these 2 are politicians rather than platforms. Could you find other trees where your propaganda seems more plausible in context, please.
sekia
·3 ปีที่แล้ว·discuss
Sure it is true like other SNSs, like Musk's X, are so too. Some particular people call it the "Free Speech".
sekia
·3 ปีที่แล้ว·discuss
Yup, literally: https://docs.raku.org/type/Cool
sekia
·3 ปีที่แล้ว·discuss
Seems a subset of it. Practicality aside, Perl can autovivify not only hashes but also arrays:

  my %x;
  $x{foo}[1]{bar} = 42;  # %x is ( foo => [ undef, { bar => 42 } ] )
sekia
·4 ปีที่แล้ว·discuss
Fascinating rhetoric revealing indirect rule scheme.
sekia
·4 ปีที่แล้ว·discuss
> 2. Further than multi-threading, Perl doesn't even have sensible support for async/await style concurrency.

I've never thought so. With Coro's rouse_cb/rouse_wait, you can use almost every callback-style methods in async/await manner.