Readit News logoReadit News
stakhanov commented on Code formatting comes to uv experimentally   pydevtools.com/blog/uv-fo... · Posted by u/tanelpoder
stakhanov · 5 days ago
A Foolish Consistency is the Hobgoblin of Little Minds

https://peps.python.org/pep-0008/#a-foolish-consistency-is-t...

I wonder how a code formatting tool is going to implement that.

stakhanov commented on Show HN: Lue – Terminal eBook Reader with Text-to-Speech   github.com/superstarryeye... · Posted by u/superstarryeyes
stakhanov · 11 days ago
Thanks a lot!

I have a section on my reading list for books that are available as e-books, but not as audiobooks, and that section just keeps growing ad infinitum. I seldom find the time to read, but I often have time for audiobooks, as I listen to them while driving, or doing household chores, etc.

So, when I saw your post, I immediately tried it out, and it works really well for my purposes.

One feature request: It would be awesome if there was a control for the speech rate.

stakhanov commented on Ask HN: Who is hiring? (May 2025)    · Posted by u/whoishiring
stakhanov · 4 months ago
Asking in good faith out of genuine curiosity: I kind of associate ClickHouse with Yandex. What's the present-day relationship and legal setup, and how does it jive with Western sanctions against Russia?
stakhanov commented on As 'Bot' Students Continue to Flood In, Community Colleges Struggle to Respond   voiceofsandiego.org/2025/... · Posted by u/jhunter1016
stakhanov · 4 months ago
When I read that title, I was expecting the following story: "Academic ghostwriters", thanks to AI, are now completing online degrees by the hundreds per actual human headcount, selling the opportunity to put one's name on the "work" to fraudulently obtain a degree.
stakhanov commented on Harvard's response to federal government letter demanding changes   harvard.edu/president/new... · Posted by u/impish9208
stakhanov · 4 months ago
What jumps out at me is the paragraph: "Governance and leadership reforms." in the original letter sent by the government to the university.

The other stuff is hard to make sense of, but this part is crystal clear: The authoritarian government is asking the university to restructure itself along more authoritarian lines. ...essentially Trump wants continuity of reporting lines ultimately leading up to him, and going down to the individual faculty member, student, and foreign collaborating partner. That sort of thing could come in handy for all kinds of things in the future, not just the silly demands of the present.

Deleted Comment

stakhanov commented on US Administration announces 34% tariffs on China, 20% on EU   bbc.com/news/live/c1dr7vy... · Posted by u/belter
danmaz74 · 5 months ago
By the way, what I find most baffling in these discussions is that these calculations are always based only on physical goods, ignoring services, where the US usually has a positive balance - eg, with the EU, the US has a 109B positive balance. In our economies, which are more and more service based, why are services ignored?
stakhanov · 5 months ago
Services are ignored by Trump for precisely the reason you mention. The big question is: What will other countries do, like Germany, who tend to export goods to the U.S. but import services. Right now, those are the countries who would rather prevent this thing from escalating, but if escalation it must be and they run out of ammunition within the scope of tariffs on goods, where will they go next?
stakhanov commented on US Administration announces 34% tariffs on China, 20% on EU   bbc.com/news/live/c1dr7vy... · Posted by u/belter
jenadine · 5 months ago
I'm a freelance selling software services. Some of my customers are in the US. Am I affected? These tariff don't impact software, right?

Different countries have different tariff. Is there room for arbitration? In which a 3rd party business from a country with low tariff would buy a product in one of the countries with high tariff and export that to the US, taking a small cut.

stakhanov · 5 months ago
Services aren't traditionally part of tariffs; tariffs apply only to physical stuff moving across borders.

That being said: I work in a services-oriented business right now "exporting" services to the U.S. and the leadership of that company is seemingly getting very worried, trying to diversify their customer base out of the U.S.

If, in the cycle of retaliatory action, they run out of ammunition with tariffs on stuff, who knows what other crazy ideas will come to the surface: Tariffs on services do come to mind, maybe restrictions around recognition/enforcement of foreign-owned intellectual property,...

stakhanov commented on Learning about Bootc   sean.thrailkill.cloud/pos... · Posted by u/nikodunk
rcxdude · 5 months ago
What kind of integration do you mean? Basically the only integration that distros do is forcing all packages into one library dependency, which is something with relatively little user-facing benefit (in fact, it's mostly to make it easier for the maintainers to do security updates). This push towards appimages and the like is basically about standardising the interface between the distro and the application, so application developers don't need to rely on the distros packaging their app correctly, or to do N different packages for N different distros and deal with N different arbitrary differences between them (and if they want to delegate this packaging work like before, they can. Not all of these various packages are put out by the author of the software).

(Now, whether these various standards work well enough, is a different question. There seems to be a bit of a proliferation of them, all of which have various weaknesses ATM, so it seems there's still some improvements to be made there, but the principle is fairly sensible if you want to a) have a variety of distros and b) not have M*N work to do for M applications and N distros)

stakhanov · 5 months ago
The place where my argument is coming from is that the MxN nature is pretty much inescapable.

> What kind of integration do you mean?

See? The "integration" is something you only notice when it breaks (or when you're working through LFS and BLFS in preparation for your computer science Ph.D.) -- This kind of work is currently being done pretty well, so it rarely breaks, so people think it doesn't even exist. Also notice that a linux distro is what's both on the outside and the inside of most containers. If debian stops doing integration work, no amount of containerization will save us.

So, what kind of breakage might there be? Well, my containerized desktop app isn't working. It crashed and told me to go look for details in the logfile. But the logfile is nowhere to be found. ...oh, of course. The logfile is inside the container. No problem, just "docker exec -ti /bin/bash" to go investigate. Ah, problem found. DBUS is not being shared properly with the host. Funny. Prior to containerization I never even had to know what DBUS was, because it just worked. Now it's causing trouble all the time. Okay, now just edit that config file. Oh, shoot. There's no vi. No problem, just "apt get install vi" inside the container. Oh "apt" is not working. Seems like this container is based on alpine. Now what was the command to install vi on alpine again? ...one day later. Hey, finally got my app to start. Now let's start doing some useful work. Just File|Open that document I need to work on. The document sits on my NAS that's mounted under "/mnt/mynas". Oh, it's not there. Seems like that's not being shared. That would have been too good to be true. Now how do I do that sharing? And how does it work exactly? If I change the IP address of my NAS and I remount it on the host, does the guest pick that up, or do I need to re-start the app? Does the guest just have a weak-reference to the mountpoint on the host? Or does it keep a copy of the old descriptor? ...damn. In 20 years of doing Linux, prior to containerization, I never needed to know any of this. ...that's the magic of "system integration". Distros did that kind of work so the rest of us didn't have to.

stakhanov commented on Learning about Bootc   sean.thrailkill.cloud/pos... · Posted by u/nikodunk
hurutparittya · 5 months ago
Well, I've been using NixOS for a while now, and it's by far the most "integrated" feeling distro I've ever tried.
stakhanov · 5 months ago
In what I wrote above, I wasn't referring to NixOS or Guix. I was thinking of the other ones (SteamOS, Fedora Silverblue, OpenSuSE Aeon, Vanilla OS, etc.) -- In fact, I think it's a bit misleading to lump them together in the same category of "atomic" or "immutable". This term has come to mean way too many different things.

u/stakhanov

KarmaCake day1891December 15, 2016View Original