Fascists, Racists, Transphobes, Terfs, Homophobes can fuck off.

  • 4 Posts
  • 218 Comments
Joined 3 years ago
cake
Cake day: February 22nd, 2022

help-circle





  • Let yourself feel whatever you feel and observe it. Think about how you would react if you saw a close friend or family member going through that. Most kind people would say something comforting or express some form of compassion.

    The most important thing to remember is that there will be lots of good and bad things that happen in life, and holding on/ruminating over the past and obsessing over/fearing the future are probably best avoided.

    A little reflection and self compassion is good and healthy, but long term rumination and self loathing is when things can get unhealthy quick. Discerning when one turns into the other is difficult, but do your best and try to be self aware of how you’re feeling as you navigate these truly difficult emotions.

    Know that this experience, the emotions and the thoughts caught up in it, are part of what makes you human, and that ultimately, it’s one of many experiences that will add up to who you are and who you’ll eventually become. In every moment, you are, whether consciously or subconsciously, engaging with the world and the circumstances you find yourself in, and becoming who you want/need to be.

    Be aware of that, and control what you are capable of controlling about who you want to become. It’s like navigating a river, you’re not completely in control nor out of control. Ultimately all you can do is try your best to get to where you want to go, knowing it won’t be perfect nor will it go exactly to plan, but nevertheless you carry on.



  • Yeah, I’m surprised at how many people here would simply like to add tobacco to the list of controlled substances and add more fuel to the shit firestorm that is the Drug War.

    Do I believe the tobacco industry should be far more heavily regulated than it currently is? Absolutely. I actually feel that way about most legal drugs.

    But imprisoning people for doing what they want with their own bodies in their own homes has already proven to be ineffective at curtailing drug use and abuse.

    Additionally, the inhumane treatment of prisoners and former prisoners is a whole separate topic, but related in that the Drug War is just a corrupt mechanism to feed the prison-industrial complex. Why add another drug (tobacco) to the list of drugs cops can plant on your person and send you off to jail for?



  • I have about 25 or so shell scripts I use somewhat regularly and well over 300 aliases. I actually specifically don’t wrap package manager related scripts for no reason in particular, but many often do.

    My rule for an alias is if the amount of custom flags gets lengthy, and I use it often, yeah it gets an alias. Here’s an example of using yt-dlp:

    alias ytdl='yt-dlp --sponsorblock-remove all --write-auto-sub -f "bestvideo\*+bestaudio[ext=m4a]/best" -f mp4'
    

    For shell scripts, my rule goes that it should probably have multiple features related around a single idea, that way you can use getopts to create custom flags. For example, I have a script that wraps very basic, but commonly used, git commands, chaining the classic add, commit -m, and push behind a series of read prompts, it has -h flags for help -l for a minimal log output, -i to initialize a new repository (even using github api token to remotely create the repo if you want to use github), and -r to revert back changes to a specified commit.

    Generally speaking aliases will get you what you need most of the time in a pinch, but shell scripting is more powerful, versatile, but potentially more time consuming.

    Others have rightly pointed out that these abstractions can sometimes negatively impact muscle memory, but IMHO this only really applies if you work as devops or sysadmin, where you are often responsible for running many different Linux servers, but usually this isn’t an issue if you have access to the internet and can see your saved aliases and/or scripts (but yeah, instant recall of native commands trumps notes every time).

    Additionally, another mentioned using git to keep track of your aliases, which I totally agree with. Whatever you do, back up your aliases and shell scripts, ideally with a git repo of some kind. This not only allows you to take your new scripts/aliases with you wherever you go, but also reference them later in case it’s not possible to use them on not your machine.

    Hope this helps. Bash can be crazy powerful if you take the time to learn it, and aliases are a great entry point to recognizing that potential. Here’s one of my favorites that combines mkdir with cd:

    alias mkcd='{ IFS= read -r d && mkdir "$d" && cd "$d"; } <<<' 
    

    Good luck, and have fun.


  • I’m an astoundingly selfish person, and unapologetic about it. Makes for having relationships, romantic or otherwise, pretty much impossible.

    I’m middle aged, dated, had relationships in the past, etc., and honestly just don’t have the drive to make relationships work. I do the bare minimum to keep my professional relationships in tact, which honestly is exhausting enough, and otherwise just keep to myself. It’s so much easier than when I was trying so hard to pretend I was interested in where another person was coming from or what they were going through. Now at least that effort ends after I clock out for the day, and there’s less socializing where I work, so there’s less of those kinds of social expectations overall.


  • On Android, from FDroid you can install an app called Seal, which is a minimal frontend for yt-dlp. I discovered it while trying to circumvent issues Newpipe was having with some update to the YouTube API.

    Unlike Newpipe forks, which can use the sponsor block API but not when downloading the video directly to your device, Seal allows you to input the custom flags available from the yt-dlp cli, so you can automatically skip annoying sponsor mentions even on your downloaded videos.



  • z3rOR0ne@lemmy.mltoLinux@lemmy.mlFavourite DE
    link
    fedilink
    arrow-up
    1
    ·
    4 months ago

    Honestly my first olkb was the Planck from DROP. A 40% keyboard where the numbers and symbols are each on their own separate layer. The defaults on the Voyager were very clunky IMHO, so I simply switched them to the defaults of the Planck, including moving the home row up one whole row. This left a few spare keys as the Voyager is a 55 key, so I simply added two Super keys instead of one as well as a few other duplicates.

    I’ve also heard of some interesting workarounds for using Vim with Colemack/Dvorak. It is funny, when I first discovered OLKBs, I kept encouraging people to use them, and I still do. Same with Vim. But ultimately I get why people don’t. I’m so used to this workflow now, going back to a standard keyboard feels clunky and slow, and I’d imagine my setup feels awkward and alien to most if not all other people.

    But it’s uniquely mine and I can type 100wpm if I am on a roll with his setup.

    The clamps are a hilarious accident that happened to work for me. I was experimenting with different ways to get that near 90° angle shoulder width apart, and this was the3 soluuon I haphazardly stumbled on.

    Glad you like it/find it entertaining! I wish you well in finding what works for you! ✌️



  • z3rOR0ne@lemmy.mltoLinux@lemmy.mlFavourite DE
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    4 months ago

    Nah, didn’t go that far (yet), just heavily edited a qmk_firmware configuration. So yeah, I’ll admit I didn’t exactly write my own keyboard firmware.

    I have the soldering tools ready for when I have time to learn. Sadly I only have time for software lately, and hardware/firmware has had to take a back seat.

    Customizing your workflow around the keyboard is a helluva drug though! If it weren’t for Vim being configured for QWERTY out of the box, I’d probably configure a COLEMAK or DVORAK setup as well.

    I’d encourage you to go as far down the rabbit hole as you’re comfortable, the learning curve can slow you down initially, but the dividends pay off in the long run imho.

    Here’s a pic of my current setup. The keyboard is prebuilt (Voyager ZSA), just with custom firmware. Couple clamps keep it vertical for ergonomics.


  • z3rOR0ne@lemmy.mltoLinux@lemmy.mlFavourite DE
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    4 months ago

    I’ve been on BSPWM for nearly 2 years now. Custom scripts and keybindings all over the place. My workflow is so customized and keyboard centric with this TWM. Vim bindings in the terminal, Vimium in the browser, and a heavily customized Neovim Text Editor with Espanso Text expander global keybindings every where… Not to mention a 55 key split Ortholinear Keyboard with custom firmware…yeah… My hands almost never touch my mouse except to game.


  • There’s more than a few reasons why Linux can’t make the jump to holding a dominant position in the desktop market.

    One is simply preinstallation. For companies (and therefore the general public) to adopt the Desktop Linux, they’d need it simply to be installed for them, with a Desktop Environment like Gnome or KDE.

    Secondly is updates. As much as Linux users tout the control they have over when and how updates take place, and how much Windows users will always complain about having to update their systems, until system updates on Linux are made automatic (or at least given the option to be made automatic), there cannot be a mainstream Linux Desktop. This means updates that happen very much like Windows, no administrator/sudo password, just happens on reboot regularly.

    The reason for this is mainly that the average user would never update unless forced, and then when something inevitably breaks, they are left, as always, frustrated that their computer just didn’t work as expected forever without any upkeep, understanding, or updates.

    Lastly is support. And this is multifaceted. By support I mean software support by companies like Adobe. I also mean a much farther reaching swath of random devices that literally plug and play like on Windows.

    As an aside, I’ll also say that since there is a move towards Wayland, there also needs to be a No Configuration Necessary way of running Nvidia on Wayland. This is less a Linux issue, and more a Nvidia one, but until pretty much any and all hardware works on Linux the way it just works on Windows, this sadly affects Linux Desktop adoption as more and more of the Linux Desktop ecosystem moves towards forcing Wayland adoption.

    Finally I’ll say that the Microsoft corporation at large obviously relies mainly on Corporate Adoption of its products and services, and that the Windows Desktop is simply one part of that greater whole. Their approach to competing with Apple and their walled garden ecosystem has been to slowly but surely create their own, its just so much larger you forget there are walls. They have done this by absorbing more and more of the tech ecosystem either by acquisition, invention, or otherwise. Examples ot this include Bing and All Search Engines that Use it, the pushing of TypeScript into JavaScript Development, the predominance and proliferation of VSStudio/VSCode in modern software development, their heavy involvement with OpenAI and aggressive pushing of AI products/services, their acquisition of Github and subsequent further expansion of influence over software development and distribution, and much much more.

    Despite the privacy invasion, enshittefication of the user experience, and their various other ways they have mistreated their users specifically via the direction they’ve taken Windows, Microsoft has established itself as THE Desktop, as THE Workstation, and as THE company that comes to mind when the average person mentions “computer”, and the majority of people associate computer related productivity and play with Windows.

    For all the advances made to Desktop Linux, especially in recent years, it is unlikely that Linux Desktop adoption will ever proliferate to the kinds of mainstream adoption that its accolades desire. Until Linux (or at least a Linux distribution) can demonstrate what I’ve mentioned above (preinstallation, automatic/automated updates, and wide spread software/hardware support from various 3rd party vendors) along with demonstrating a work flow/user experience that is somehow both familiar to the user and also better than the experience on Windows, then the day of the Linux Desktop will never come.

    This aforementioned demonstration, btw, would have to become obscenely apparent to the average every day computer user who just wants to get their work done, play a Video Game, and watch Netflix, all without having to ever even know what a terminal emulator is.

    I love Linux, and I think the Linux Desktop is not only a superior user experience, but is just better in general than Windows. But the average user I’ve encountered generally hates their Computer if it doesn’t work as expected 110% of the time. Linux, and honestly computers, will never be able to do that, but the closer the Desktop (and user facing GUIs more broadly) get to creating that illusion of “it all just works all the time”, the more adoption you’ll see.


  • In my experience, those that asked to be referred to as they/them identify as being non-binary, though in reading more on the topic, this is not always the case.

    I only adopt the pronouns of those that the person in question expressly asks to be referred to as. Otherwise, if the pronouns are not explicitly mentioned, I default to the pronouns of the gender I perceive said individual to be presenting as until otherwise corrected.

    In my opinion, it’s simply a sign of mutual respect and acknowledgement that I recognize their identity as they proclaim it to be.