cultural reviewer and dabbler in stylistic premonitions

  • 24 Posts
  • 152 Comments
Joined 4 years ago
cake
Cake day: January 17th, 2022

help-circle
  • Nice, thanks.

    It would certainly be nice to be able to pre-download language pair models without selecting to and from and then actually initiating a translation using the model i don’t have yet.

    re: getting uBlock externally, i also see the attraction of that approach but unfortunately Debian’s package was last updated in October (from 1.62 to 1.67) while AMO has a release from January (1.69) :/

    imo it would be better to bundle UBO and ship its updates along with browser updates.

    are there plans to distribute Konform via flathub?



  • could Red Hat eventually take control of the project

    Fedora started in 2002 and merged with “Red Hat Linux” in 2003.

    Red Hat, Inc has had full control of it ever since then.

    It is a “community project” inasmuch as there are Fedora developers who are volunteers (and some who are paid by companies other than Red Hat), and the Fedora Council includes people who are not employed by Red Hat - but the Project Leader is always a Red Hat employee, and if the Council ever has an irreconcilable difference with Red Hat then Red Hat can simply ignore and/or dismiss them.

    Red Hat owns all Fedora-related trademarks, and the Fedora Project is not an independent legal entity: it is a part of Red Hat.

    If Fedora developers don’t like Red Hat’s decisions regarding the project, they can fork it but they’d need to change the name and find some other sources funding.

    Also, icymi, Red Hat became a subsidiary of IBM in 2019.


  • Does anything provide a similar experience to Arch’s amazing AUR

    I am not aware of any software distribution service with a comparable experience (massive userbase with zero vetting for uploaders) as Arch’s amazing AUR - if you are looking for a way to distribute malware to many unsuspecting people (who’s friends think they’re hackerman), it’s really unparalleled. (😢)

    To your primary question, yes, many people do successfully daily drive various Linux distros without ever opening the terminal. 🙄



  • Arthur Besse@lemmy.mlMtoLinux@lemmy.mlAnd so it begins
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 months ago

    1 reason it’s wrong to me: https://nosystemd.org/

    Under “Notable bugs and security issues” there is a big list of issues which were all (afaict) fixed many years ago.

    There have been reasonable philosophical objections to systemd, some of which are still relevant, and as that site shows there are still many distros without it, but for the vast majority of desktop users who want something that JustWorks… using a mainstream distro with systemd is the way to go.

    This blog post from pmOS covers some of the pain of trying to use KDE or GNOME without it.




  • I think you misunderstood me

    Go ahead and post the same link for Google job listings. I’ll wait.

    My comment was in response to your comments (bolded below) in this thread:

    I was already thinking of getting a Linux phone next, this is helping to seal the deal. Fuck Apple the genocide enablers.

    please do explain how Apple is doing anything here. If Israel wants to provide their military with iPhones they’re going to no matter what Apple does.

    They don’t have to do business with/in Israel.

    That still will not stop a nation state (especially Israel) from getting their hands on Apple devices.

    My point was not to say that Google is better than Apple here - in fact, unlike Apple (as far as I know), Google has actually built AI tools specifically tailored for Israel’s genocidal business requirements.

    My point is that if Apple wanted to boycott a country (which in the case of Israel they obviously don’t, which job listings at their R&D centers are just one of many points of evidence of) it would actually make it difficult-to-impossible for any substantial part of the boycotted country’s government to rely on using iPhones.

    (Unlike Android derivatives which can easily be used without direct reliance on Google’s services…)

    As an aside, while I would not use iOS (due to it being proprietary), it is hard to dispute that (for most adversaries, at least) compromising it is generally much more expensive/difficult/unlikely than Android. So, given that Apple is very friendly to them, the IDF’s policy decision to use iPhones makes sense.










  • Arthur Besse@lemmy.mlMtoLinux@lemmy.mlLinux terminal with text selection
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    5 months ago

    “But you can’t copy with Ctrl+C, it’s…” - You can. When something is selected It copies selection to clipboard, otherwise it sends SIGINT.

    What terminal emulator are you using where ctrl-c copies instead of sending SIGINT when text is selected? In every one I’ve ever used, ctrl-c still sends SIGINT even with text selected (and one must must use ctrl-shift-C/ctrl-shift-V to copy/paste).

    I don’t have any suggestion for getting the behavior you’re asking for, but besides the normal ctrl-(shift)-C/V clipboard FYI you also have two other types of clipboard-like things: one which works anywhere (not only in the terminal) and is actually always automatically copying anything you select and lets you paste from it with middle click (this originated with X Windows but i think most Wayland compositors have also implemented it by now), and another which is found in GNU Readline (used by bash and numerous other REPLs) called the “kill buffer” which can be pasted (or “yanked”) from and cut (or “killed”) to using Emacs keyboard shortcuts (which also include various cursor movement controls).

    Notes:

    • the kill buffer is local to a given readline context, it’s not shared across different shell windows.
    • the list of emacs keybindings in that wikipedia article i linked is currently confusingly referring to the kill buffer as “the clipboard”
    • you can drastically reconfigure your readline keybindings and other behavior by editing your .inputrc file, but you cannot achieve what you were originally asking for because there is no concept of text selection in readline.

    HTH!