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·قبل سنتين·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
·قبل سنتين·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
·قبل سنتين·discuss
Betteridge's law applies:

> Any headline that ends in a question mark can be answered by the word no."
supakeen
·قبل سنتين·discuss
No, it looks different from this.
supakeen
·قبل سنتين·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
·قبل سنتين·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
·قبل سنتين·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
·قبل سنتين·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
·قبل سنتين·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