Cuteness enjoyer.

  • 16 Posts
  • 80 Comments
Joined 1 year ago
cake
Cake day: June 16th, 2023

help-circle
  • The one in particular that you brought up is how much the girls don’t want to be too muscular, but rather just slim.

    I haven’t seen this show but isn’t this just realistic? Most woman just don’t want to be ripped or bulky. The real danger is woman thinking they are definitely going to be all buff if they work out, and thus not working out or doing sports. And not doing any of that is not good for your health. Woman should know that gaining significant muscle mass is already hard for men, let alone woman, so they can work out safely without worrying too much. As long as you don’t hop on the juice and/or devote your life to the gym.

    I mean, her role is to absorb damage for the party, muscles are kind of a prerequisite.

    It’s a show with magic and stuff, so I don’t think that holds. Reasoning the other way around, if it would hold, then given her appearance Darkness shouldn’t have the physical ability that she indeed has.


  • I don’t know of any. I do like keyboard based workflows so I have VimiumC in firefox which does what you want. A tiling window manager is the solution for the desktop environment part. The tricky part is navigating existing GUI apps.

    They all work using macOS’ accessibility API which exposes UI elements for programmatic interaction.

    Because linux doesn’t have a unified framework because of our freedom, things like this are very tricky if not practically infeasible (at least as far as I know).

    edit: There was also a thing where you divide up the screen recursively with keyboard shortcuts and when the intersection hovered over whatever you want to click you could hit a key and it would generate a mouseclick there. I forgot the name, never tried it either. But a plus is that it doesn’t need applications to implement a certain API to work so it would work system wide.









  • It is possible that the previous owner flashed firmware that doesn’t bind that key to anything. So the first thing to try would be flashing firmware that does bind the key. If that doesn’t work, the switch might be the problem. You could check on the back of the pcb if the soldering looks any different from the other keys. Even if it doesn’t you could reflow the key. If that doesn’t work you can unsolder the key and pull it out, open it up to see if anything is messed up like the contact leaf. You could try a different switch in that spot. If you put in a fresh key that works in the old spot and it still doesn’t work it might be the pcb. Maybe you need to reflow or replace the diode. If that doesn’t work it might be the contact pads on the pcb for the switch or the diode. When unsoldered and with the solder removed you should see a metallic ring around where the switch pin goes. If that is (partially) missing it will be trouble. It could also be the ‘wire’ that is etched into the pcb that goes from the pad to the controller. Either fixing the pad or jumping the wire is a bit more advanced (and a pain in the ass). I don’t have experience with that. Hopefully the problem is earlier in the chain. Good luck!










  • Vim uses these commands like di" (delete everything inside “”) instead of chords (holding multiple keys down at once). Both work fine. The reason vim does this is that many regard it as more ergonomic. You don’t stretch your hand/fingers out and you can keep your fingers at homerow. You might have heard about people getting an “Emacs Pinky”. It’s basically down to preference. I don’t use emacs but I know people use vim bindings in emacs (emacs is very scriptable after all). That way you can try or integrate vim like bindings without leaving your comfy emacs.


  • I use fish abbreviations. Unlike bash/zsh aliases, they expand when you press space or enter. This way you see the original command every time you use the alias, and you can edit as well. This should lighten the concern you have a bit. Your concern is something that sysadmins keep in mind e.g. default vim bindings so you are always comfortable on any server. However for desktop use I don’t think leaving the speed and comfort on table is worth it. Most desktop users only use their own systems anyway.


    • set a good tty font (it’s almost all you’re gonna see)
    • be comfy with basic core utils (mv, cp, chmod, …)
    • choose a shell (bash, fish, …) and set up some useful aliases/abbreviations
    • fzf or something similar does wonders (also replaces things like dmenu)
    • terminal multiplexers are used instead of window managers
    • some applications allow you to do some graphics (like mpv to play video)
    • there is more advanced stuff you can do with frame buffers
    • there are terminal browsers like w3m or lynx
    • a good extensible text editor is essential (vim, nvim, emacs, helix, …)
    • research some cli applications for your usecase (cal (calendar), neomutt (email), …)

    Over time your collection of aliases and scripts will grow to make common tasks you do easier.