

Chimera Squad and Hi-Fi Rush jump to mind — is that the sort of thing you have in mind?


Chimera Squad and Hi-Fi Rush jump to mind — is that the sort of thing you have in mind?
Debianees will only answer your inquiry, however, if it is worded in a proper polite way. Here is a proper, polite way to ask for tech support.
OMG! DEBIAN IS SO PATHETIC! IT CAN’T ________, BUT WINDOWS CAN _____ JUST BY CLICKING _______!
Rushing to defend their precious Linux, they will give the most descriptive, polite, useful information possible. If you use “normal” manners though, you will most likely get flamed, insulted, and receive at least 10 viruses by email. All of which will be written in “1337”, for no appearent reason. Your IP will be traced, and eventually your Linux OS will be hijacked and destroyed. In some cases your CPU might melt from having to handle so much hacking by insecure “Debianees”.
thanks, I’ll check it out!
subscribed, thanks!
Factorio.
Honourable mentions:
echo 1 > /proc/sys/kernel/sysrq && echo c > /proc/sysrq-trigger


For the moment he had shut his ears to the remoter noises and was listening to the stuff that streamed out of the telescreen. It appeared that there had even been demonstrations to thank Big Brother for raising the chocolate ration to twenty grammes a week. And only yesterday, he reflected, it had been announced that the ration was to be reduced to twenty grammes a week. Was it possible that they could swallow that, after only twenty-four hours? Yes, they swallowed it.

that’s not like JSON at all. JSON is human readable, while this is clearly a binary format


Sounds like atop is exactly what you need.
I can’t imagine how normal people use any software at all. When something doesn’t work for me, often I can figure out what could’ve gone wrong. For instance, there might be bug in the JavaScript form handler, and I can just bypass it. Or an app doesn’t invalidate its cache properly, so I just need to flush it manually.


Edit: it appears the PWA support in Firefox is not ideal, see responses to this comment.
Chromium is not an offshoot of Chrome, it’s more of a precursor to Chrome, and it is completely controlled by Google. As such, it will also drop support for extensions that do not support Manifest v3.
If you want to enable PWA support in Firefox, it looks like this is possible (however the experience doesn’t seem to be great, see responses to this comment): https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps/Guides/Installing
For other browser suggestions see, e.g. https://www.xda-developers.com/4-browsers-manifest-v2-ublock-origin/
Ah yes, that’s Android for ya.
They call Japan itself “Nihon”, so what do they know… /s
Is that a real problem? I’ve never considered that a python package manager should be or could be faster.
To be fair, I don’t use python professionally.


I would argue that having distinct match and search helps readability. The difference between match('((([0-9]+-[0-9]+)|([0-9]+))[,]?)+[^,]', s) and search('((([0-9]+-[0-9]+)|([0-9]+))[,]?)+[^,]', s) is clear without the need for me to parse the regular expression myself. It also helps code reuse. Consider that you have PHONE_NUMBER_REGEX defined somewhere. If you only had a method to “search” but not to “match”, you would have to do something like search(f"\A{PHONE_NUMBER_REGEX}\Z", s), which is error-prone and less readable. Most likely you would end up having at least two sets of precompiled regex objects (i.e. PHONE_NUMBER_REGEX and PHONE_NUMBER_FULLMATCH_REGEX). It is also a fairly common practice in other languages’ regex libraries (cf. [1,2]). Golang, which is usually very reserved in the number of ways to express the same thing, has 16 different matching methods[3].
Regarding re.findall, I see what you mean, however I don’t agree with your conclusions. I think it is a useful convenience method that improves readability in many cases. I’ve found these usages from my code, and I’m quite happy that this method was available[4]:
digits = [digit_map[digit] for digit in re.findall("(?=(one|two|three|four|five|six|seven|eight|nine|[0-9]))", line)]
[(minutes, seconds)] = re.findall(r"You have (?:(\d+)m )?(\d+)s left to wait", text)
[1] https://docs.oracle.com/javase/7/docs/api/java/util/regex/Matcher.html
[2] https://en.cppreference.com/w/cpp/regex
[4] https://github.com/search?q=repo%3Ahades%2Faoc23 findall&type=code
Quantum encryption isn’t something quantum computers can even do. It’s not just transforming bits into other bits, it’s about building entirely new security properties based on physical properties of matter.
So, even if it is interesting for end users, they would need dedicated hardware anyway.
came here to write this comment