HackerTrans
TopNewTrendsCommentsPastAskShowJobs

supakeen

no profile record

Submissions

Introducing Amutable, Linux Systems Integrity

amutable.com
18 points·by supakeen·6 माह पहले·1 comments

ESP32 WiFi Superstitions

supakeen.com
141 points·by supakeen·पिछला वर्ष·80 comments

Shooting electrons at plastic to make microscopic features [video]

youtube.com
5 points·by supakeen·2 वर्ष पहले·0 comments

comments

supakeen
·3 माह पहले·discuss
I mean; this is the normal mode of operation for GitHub at this point.
supakeen
·8 माह पहले·discuss
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 माह पहले·discuss
Ah yea then I misunderstood. That's right you can't easily switch out the cells for protected cells yourself :(
supakeen
·11 माह पहले·discuss
Sure, that means the idea of using unprotected cells was already there when the holders were selected :)
supakeen
·पिछला वर्ष·discuss
Thanks, fixed!
supakeen
·पिछला वर्ष·discuss
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
·पिछला वर्ष·discuss
Yea, it's not super clear but that's indeed what I meant to say :)
supakeen
·2 वर्ष पहले·discuss
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 वर्ष पहले·discuss
Betteridge's law applies:

> Any headline that ends in a question mark can be answered by the word no."
supakeen
·2 वर्ष पहले·discuss
No, it looks different from this.
supakeen
·2 वर्ष पहले·discuss
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 वर्ष पहले·discuss
> 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 वर्ष पहले·discuss
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 वर्ष पहले·discuss
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 वर्ष पहले·discuss
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