• 0 Posts
  • 57 Comments
Joined 2 years ago
cake
Cake day: June 21st, 2023

help-circle
rss


  • My current system was installed as manjaro, but i immediately started having AUR issues, so I just changed all the repos out to the official arch ones and over time everything manjaro specific has been updated or removed.

    The first lines in my /var/log/pacman.log are from early 2015, and ive fully rebuilt my computer since then, including swapping hard drives (dd’ to clone old drive onto new drive). So at this point my PC is a hardware and software ship of theseus.


  • If those personal photos and videos are important to you, you should have them backed up anyway. If you ever spill anything on that laptop, or it gets dropped or broken or lost. All those things are gone.

    But as others have said, you can sometimes resize a partition from gparted if the drive isnt mounted (ie, use the live USB).


  • Counter point… Both are generating perfectly valid JSON, so who cares?

    Python 3.13.2 (main, Feb  5 2025, 08:05:21) [GCC 14.2.1 20250128]
    Type 'copyright', 'credits' or 'license' for more information
    IPython 9.0.2 -- An enhanced Interactive Python. Type '?' for help.
    Tip: IPython 9.0+ have hooks to integrate AI/LLM completions.
    
    In [1]: import json
    
    In [2]: json.loads('{"x": 1e-05}')
    Out[2]: {'x': 1e-05}
    
    In [3]: json.loads('{"x":0.00001}')
    Out[3]: {'x': 1e-05}
    
    Welcome to Node.js v20.3.1.
    Type ".help" for more information.
    > JSON.parse('{"x":0.00001}')
    { x: 0.00001 }
    > JSON.parse('{"x": 1e-05}')
    { x: 0.00001 }
    

    Javascript and Python both happily accept either format from the string and convert it into a float they are happy with.



  • https://en.wikipedia.org/wiki/Fast_inverse_square_root

    even if you can figure out specifically WHAT a function does, it’s not always clear WHY a function does, and honestly, if this function wasnt labeled in the code, no way in hell would I know what it does.

    It has an entire wiki page dedicated to explaining it, and it involves enough math that most people wouldn’t be able to follow along.

    Nothing this atrocious lives in any current codebases I work on… but if you work at an old enough company, some of the load-bearing code will be tricky to figure out what is calling it, but also it was written in a time where little hacks were needed to eke out performance.

    You only have to experience it once for it to be a memorable enough thing that you will cite it for the rest of your days.

    Or more realistically, it IS comprehensible, but the level of effort necessary to comprehend it is not worth it. So you leave it as “undecipherable” and move on.


  • XMPP has been an option for decades, if your contacts aren’t using it by now, they arent going to. And with communications tools, both parties have to agree on a tool. Even if one party doesn’t care about privacy or security.

    Raw brute force security isn’t the point most of the time, and ease of use and simplicity of setup are going to be major factors in adoption. Signal is much easier to get started with for most people than XMPP.


  • The point of a terminal like this isn’t necessarily to have more features. I have the tabs turned off (I also just use tmux). The point is to render smoothly and look/feel nice.

    Some people would rather spend a lot of money on a nice pen. It still is just a pen that writes. No additional features over a 25 cent Bic pen. But the smoothness of the writing, the hand feel, consistency of line thickness, etc… to some people that matters. No extra features, it just looks and feels a bit better… But if all you are doing is writing a grocery list, you may not care. And if you don’t care, you aren’t wrong. This just doesn’t apply to you. If you don’t have a reason, you don’t need to find one. It’s just not applicable.

    But some people do care. They do have a reason. And they are also not wrong to care. Their reasons just may not apply to you because you have different workloads or priorities (or maybe they do, and you just haven’t realized that it’s a thing you care about)


  • I think this just happens to fall under the category of “some people care about milliseconds of rendering time, and some people don’t.” I don’t know if the GPU acceleration has anything to do with it, but this terminal emulator also has really good font rendering.

    If you are happy with your current terminal emulator, continue using it. If you heavily use your terminal emulator for a lot of things and in some things you’ve found that it stutters a bit, and you wished it was a bit smoother, get a GPU accelerated terminal emulator.

    And secret bonus option: Even if you are happy with your current terminal emulator, give it a try anyway. Ghostty has a “zero configuration” policy where their goal is for most people to never need to configure anything. Sane defaults. It’s a good out of the box experience. Give it a few test drives, and if you’re still perplexed about why you should care, then maybe it’s just not for you and you can switch back. If you go “that was pretty smooth, i dont have a reason to switch back” then maybe you’ll think about it differently.


  • I was using alacritty. Ghostty feels snappy like you said. I dont know if it’s “noticeably” faster in any meaningful way. but the out of the box config settings make the font rendering look much nicer than I had set up for alacritty.

    I told myself “I’ll use this for a while” as well but then realized… I don’t actually have a reason to change to anything else. It gets the job done. So until some other new shiny thing comes along, this is probably where I stay for a while.


  • Some games can detect if they are running a VM and block that as part of their anticheat. You may not be able to get roblox or fortnite running in a windows VM.

    Some games just flat out require actual Windows, so your options are “Have an actual Windows drive/partition” or “Just don’t play those games”




  • Which version of of SDDM (and presumably KDE) are you using?

    One of the comments one of those threads you linked points out that the bugs you’re sharing are for has changed.

    The components have been reworked since the button was disabled so maybe that helped. It used to be a PlasmaComponents2.TextField, now it’s a PlasmaExtras.PasswordField.

    PlasmaExtras.PasswordField has the button enabled! However, the implementation in the theme explicitly disables it.

    If you open up /usr/share/sddm/themes/breeze/Login.qml and scroll down to line 106. You’ll see rightActions: [] – this bit of code basically overrides the default behavior. It says "normally you have some actions here, but instead use this list, but [] is an empty list.

    So if you just comment that line out by adding // to the front of it… Everything should just work, since it will then revert back to using the built in value.

    However, the reason this was removed in the first place is in a comment on line 105: // Disable reveal password action because SDDM does not have the breeze icon set loaded

    If the icon set fails to load for whatever reason (if youre using a custom icon theme or something, i dunno why it might not be loaded), the button will fail to load again.

    You can test drive the SDDM lockscreen by running sddm-greeter-qt6 --test-mode --theme /usr/share/sddm/themes/breeze/ from the terminal.

    And this all assumes that you’re using the default breeze theme. If you are trying to use a different theme, not sure if any of this applies.






  • The archinstall script has a list of “profiles” that you can select from (custom, desktop, minimal, server, tailored, xorg)… And if you select “desktop” it will prompt you which DE or WM you want to install. (awesome, bspwm, budgie, cinnamon, cosmic, cutiefish, deepin, enlightment, gnome, hyprland, i3, lxqt, mate, plasma, qtile, sway, xfce4).

    By the time you’re done with the archinstall script, you basically have a fully functioning arch (ive never used the script seriously, so I have no idea what all remains not set up doing this).

    The main difference between Arch and Ubuntu in this regard, is that if you want to run KDE Plasma, you download the common Arch ISO, and select Plasma at installation time. Compared to Ubuntu where you would download the “Kubuntu” spin, so you are selecting Plasma when you acquire the ISO in the first place.

    There is no “default” arch DE, so when you install Arch, there is a lot of decisions to make (and you may not know how to make those decisions if its your first distro), whereas Ubuntu makes a lot of decisions for you, so you have to answer no questions to get set up (but you may be set up in a way you weren’t expecting). In this regard, Arch really does just feel like building a PC from parts, you just have to pick all the parts. Ubuntu is more like buying a pre-built.