Hi, I’m Miss Brainfart.

I’m afraid of sharks, with the exception being blåhaj. What could that possibly mean, huh.
(That’s not a hint, I genuinely have no idea)

Lemmings can also find me @miss_brainfart:catgirl.cloud on Matrix, if they desire to do so for e2ee reasons

  • 0 Posts
  • 45 Comments
Joined 1 year ago
cake
Cake day: July 17th, 2023

help-circle

  • Federation had a hiccup there, I’m only seeing your reply now

    Supersampling is definitely something interesting, but up to what point? On a sensor this small, even something like 48 sampled to 12 already suffers to a degree where I would stop calling it useful.

    Don’t get me wrong here, I can see the use first hand on my own phone. My second lens for night mode does 20MP to 5, and while the image is brighter than the main lens, it’s just as grainy, and a much lower output resolution too.

    Now granted, my phone is a few years old now, and modern devices surely have better sensors, but no amount of trickery will make up for those physical limitations.










  • If not buying a phone that comes with these preinstalled wasn’t the first option you picked, then ADB is your friend.

    • Install Android Platform Tools on your PC
    • Enable USB debugging in developer options
    • Connect phone to PC via USB
    • Open terminal, type adb devices
    • Authorize the connection from your phone
    • Type adb shell, and now you can wreak havoc on your phone

    so only continue if you know what the hell you’re doing

    To uninstall an app, type
    pm uninstall --user 0 *package name*

    For example,
    pm uninstall --user 0 com.facebook.services

    Should you uninstall something by accident, you can reinstall by using
    cmd package install-existing *package name*