Eskating cyclist, gamer and enjoyer of anime. Probably an artist. Also I code sometimes, pretty much just to mod titanfall 2 tho.

Introverted, yet I enjoy discussion to a fault.

  • 26 Posts
  • 1.26K Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle
  • Was definitely on by default on my device.

    Personal data is still accessible, if the app you choose to pin is something like the dialer, or your mail app, then yes, you can obviously access contacts and emails. The feature doesn’t block the pinned app from accessing everything it normally accesses.

    As for opening other apps, this applies to stuff like links or launchers. If the app has links somewhere, you could open your default browser app. It does not allow you to “escape” the pinned app to anywhere else in the system, unless the pinned app has a way to launch other apps the way launchers do.

    The feature could certainly use improvement, but if it were only useful with people you trust, it would be pointless.

    It’s obviously intended for situations where you have to let someone use your phone, and don’t want to give them free reign. With people you trust, you wouldn’t need something like that.

    It’s far better than nothing, and is in fact part of android.




  • And they let you buy the music outright, too!

    Recently quit youtube premium due to the price hike finally hitting my country. I’ve been using yt music for my listening.

    Since that went away along with yt premium, I dusted off my old music file collection (mix of itunes and bandcamp purchases, cd rips, and soundcloud downloads).

    Discovered Qobus looking for places to buy my favorite music to update my collection.

    I used to keep my entire collection on my phone, but I opted to start using ytm since I had it and my collection got too big…

    But now, I have to say I am blown away with how nice Symfonium+Jellyfin (or another music server) is to use!

    Last time I looked into it, nothing handled dynamically keeping a portion of your music on-device for offline play this well!





  • Also, easyeffects can be used to apply audio processing, if you want to. (Should be in basically any distros default repos)

    I don’t use any effects on the output, as they sound great, but I do use dynamic range compression on the mic for the benefit of my friends.

    It levels out the loudness, so whether you whisper or shout, you sound the same level of loud. That way they can hear you even if you speak quetly, or don’t get their ears blown off if you loudly swear in frustration.

    Doing the same on windows was way too much work to ever bother with, on linux, easy peasy.




  • Linux drivers are usually part of the kernel nowadays, or sometimes get loaded as kernel modules.

    Either way, most distros should just come with the audio drivers that implements the support for these. Generally, being open source, linux drivers implement support for everything the devs can figure out, rather than making a separate one for each piece of hardware that’s out there.

    If you’re on an older kernel, that might be it. I remember when I got a DS5 controller I had to use a kernel newer than 5.15 because that’s when support for it was added to the game controller driver.


  • Also, like I said, battery replacement is VERY easy.

    There is literally an official PDF for how to access it.

    The part number for the battery is AHB732038TPCT (found out by opening mine) which is like a cheat code you can put into google to find one :D

    Even better, Sennheiser seems to use standardized batteries for all their wireless stuff. There is actually a lot of empty space inside these, so I kinda wanna try replacing the “proper” battery with part number AHB622540N01, which is the battery for Sennheisers Momentum bluetooth headphones.

    Single cell batteries all put out the exact same voltage, and are charged the same way regardless of capacity, which makes small ones interchangeable with big ones (unless the circuitry is unnecessarily smart). This other battery is 1000mAh (original is 530mAh), which should net these babies 200 hours!!

    Also new pads can be found by looking for part numbers GSA371 or GSA301, but these are getting harder to find, so probably gonna need to find some generic ones that work.





  • I learned using python.

    I’ve yet to find anything that would have been a better place to start, and the concepts you pick up coding almost anything are extremely transferable.

    A small project is good because it doesn’t just teach you the basics, it makes you apply what you learn to actually do stuff.

    I write little python scripts to do various things all the time. Most recently I made one that automatically posts the next comic strip to !moomin@sopuli.xyz.

    My recommendation would be to come up with something like that, then start figuring out how to do each step of accomplishing the task you want the code to do, then putting it all together. Look things up a lot, use print() often, and trial and error your way to the goal.

    You could also read guides or watch videos, but personally I learn WAY faster by just doing.

    Reading the code, making changes based on how I think something should work, then being proven right/wrong also seems to give me a better understanding than just following instructions.