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

  • 1 Post
  • 175 Comments
Joined 1 year ago
cake
Cake day: July 17th, 2023

help-circle














  • But when the time comes and the kid needs to write some assignments for school, you can be like Your Steam Deck can do that too, have a look at what this dock does

    Imagine if handheld gaming is all they’ve ever used it and known it for, and all of a sudden you show them than it can be a full desktop experience, too

    My mind would’ve been blown back when I was a kid






  • 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 Androids’ 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*