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

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

help-circle
  • It’s a lot of work. I’m in a similar boat. I’ve been self teaching myself how to program in various languages and working as a Fullstack developer at a very small startup.

    While I’ve learned alot, there’s always more to learn and finding direction is a challenge you’ll hit many times over if you stick with it.

    Right now I’m reviewing various Open Source Projects I could contribute to as I know ultimately this will make me a much better developer. There are so many CLI and web development tools I use that I’d like to expand on but will require a marginal jump in my skills. Here are a few examples:

    • Add a feature to the rTorrent client that would allow it to torrent over i2p
    • Expand the amount of tools available within the SolidJS framework ecosystem to be competitive with React’s ecosystem.
    • Create a HTTP server in Rust that has feature parity with Golang’s Caddy
    • Add a feature to AntennaPod akin to YouTube Sponsor block that would allow for user contributed timestamps to facilitate auto skipping of ad mentions in podcast episodes.

    I also am slowly working out plans to learn enough about Rust and browsers to recreate the terminal based browser Links in Rust.

    But these are all just me spitballing. In truth, my skills aren’t quite there yet and the amount of time to get there for each one of these is a lot. So I have to choose wisely and dive in deep on the project’s codebase, probably for at least a year or more to make headway. But this is the mindset I think might help you. Look into the software you use a lot or like the concept of. Figure out how you’d like to improve it or add to it. Reach out to the developers of said software however you can, either make your case for the improvements you want to make or just help out on something they want to do with the software. Learn, listen. Rinse and repeat.

    Hope this helps a bit.







  • Damn…this looks really good actually. I’m sad to day I never heard of cohost until now. But I’ll admit I just identify with the founder’s sentiments around the tech industry, and their strict adherence to moral values around how a platform like that should interact with their users. I wish their developers all the best in looking for new work.


  • Damn…this looks really good actually. I’m sad to day I never heard of cohost until now. But I’ll admit I just identify with the founder’s sentiments around the tech industry, and their strict adherence to moral values around how a platform like that should interact with their users. I wish their developers all the best in looking for new work.


  • Oh, I honestly didn’t remember that, and just put that in as an afterthought. Should have double checked myself. Thanks for the clarification.

    Well anyways. I love this subject enough to admit when I’m wrong. And also, in researching the subject more, I found that there is the Ladybird Browser which is apparently not based on Chromium nor Firefox. I have not played around with it, but it’s nice to see people still putting in effort to make a new browser engine.

    I also found this article where the author makes a browser based off of Matt Brubeck’s aforementioned article. Very interesting stuff.


  • Browsers are literally the best attempt at the everything app.

    There’s already been a lot of good answers on this. But a goody oldie article on making a browser is covered in Matt Brubeck’s 2014 article, Let’s Build A Browser Engine.

    If you want to see one of the most minimal source code for a terminal based browser that is still in use today, I recommend downloading the source code for the Links Browser. Note that this site is very old and doesn’t even use https. But the source code can still be had here.

    Browser software is super interesting, but there’s a lot even for a bare minimum setup like Links, so that’s more or less why most people don’t develop new ones from scratch anymore. Though there are a few exceptions like Servo, and Surf but they are pretty buggy tbh. Hope that helps and sparks your interest.

    EDIT: Also of interest is Tali Garsiel’s article, How Browsers Work. This is probably one of the best in depth articles on the subject.




  • 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.