HackerTrans
トップ新着トレンドコメント過去質問紹介求人

supakeen

no profile record

投稿

Introducing Amutable, Linux Systems Integrity

amutable.com
18 ポイント·投稿者 supakeen·6 か月前·1 コメント

ESP32 WiFi Superstitions

supakeen.com
141 ポイント·投稿者 supakeen·昨年·80 コメント

Shooting electrons at plastic to make microscopic features [video]

youtube.com
5 ポイント·投稿者 supakeen·2 年前·0 コメント

コメント

supakeen
·3 か月前·議論
I mean; this is the normal mode of operation for GitHub at this point.
supakeen
·8 か月前·議論
It would probably be a good idea to verify some of the ideas you're posting; some of them are oversimplified (or wrong) :)
supakeen
·11 か月前·議論
Ah yea then I misunderstood. That's right you can't easily switch out the cells for protected cells yourself :(
supakeen
·11 か月前·議論
Sure, that means the idea of using unprotected cells was already there when the holders were selected :)
supakeen
·昨年·議論
Thanks, fixed!
supakeen
·昨年·議論
Thanks, I've written that one down in my notes as well it definitely fits the superstitions because it sounds like it should work well.
supakeen
·昨年·議論
Yea, it's not super clear but that's indeed what I meant to say :)
supakeen
·2 年前·議論
The activation of the virtualenv is unnecessary (one can execute pip/python directly from it), and the configuring of your local pyenv interpreter is also unnecessary, it can create a virtual environment with one directly:

  pyenv virtualenv python3.12 .venv
  .venv/bin/python -m pip install pandas
  .venv/bin/python
Not quite one command, but a bit more streamlined; I guess.
supakeen
·2 年前·議論
Betteridge's law applies:

> Any headline that ends in a question mark can be answered by the word no."
supakeen
·2 年前·議論
No, it looks different from this.
supakeen
·2 年前·議論
Cool idea. I would be interested in knowing the concentration you achieve and flow rates (LPM/CFH). This wouldn't work in my workshop as we don't treat our equipment nicely enough and we don't have sparkies to tend to it.
supakeen
·2 年前·議論
> Roberts, 38, now only gets fast food "as a rare treat".

I feel that that is it should be? When I was young it was important enough to mention at the monday class circle if your grandparents had taken you to visit the Golden Arches and everyone would be very jealous.
supakeen
·2 年前·議論
I've often thought about why the default implementation of many randoms around programming languages is to use LSFRs, MTs, and other fast RNGs in the 2020s.

It seems to be better to err on the side of 'people dont know if they want a PRNG or a CSPRNG' and switch the default to the latter with an explicit choice for the former for people that know what they need :)
supakeen
·2 年前·議論
Really the only web interface I consider putting on my machines is this one as it uses the normal system as available instead of doing everything custom.
supakeen
·2 年前·議論
Yes, Nim macros can fiddle with the AST: https://nim-lang.org/docs/macros.html

You can also see another (I think) neat example in `npeg`: https://github.com/zevv/npeg?tab=readme-ov-file#quickstart