Skip Navigation

Posts
1
Comments
247
Joined
2 yr. ago

  • How about none at all? But you're probably right that real ones are better than ai. Although ai might be more ethical than some

  • I dont get it either. The only explanation to this is that they had humans create spotify wrapped

  • the government takes a decades long view

    You mean four year term view? They dont give a shit about what happens next. If they did they would do something against climate change

  • If this was true, we would have much bigger problems than twitch. The dude determined twitch was spying on you based on function names (allegedly)

  • hard to see their benefits

    Don't worry, the ccp and huawei are thanking you.

  • Or just sail the high seas. The only place safe from enshitification.

  • As far as I understood this was a dismissable static ad so youtube's ads will be 10x worse

  • Ah yes, multiple unskippable ads before playing a game. Can't wait for it.

  • The price is nice but I don't get why they don't round it. Same with activision acquisition.

  • There are plenty of third party apps that do this. The integrated file explorer on Samsung devices supports ftp, sftp and smb.

  • Name another usable browser which is not based on FF or Chromium

  • I think devs go chrome first and then adapt the site to firefox.

  • I'm also looking into it right now.

    The code of android apps is compiled to dalvik bytecode which is contained in the *.dex files in the apk. You will not be able to read it. You need to decompile it to something human readable. One of those formats is smali. The xml files (manifest, ressources) are also compiled and need to be decompiled.

    One of the best tools to decompile apks is apktool. It works on pc and there is an unofficial android version. The android version includes an editor and is a gui.

    Smali is not that easy to read for beginners so on some apps you can try converting it to java using jadx (standalone on pc and included in apktool mobile). The java code will be full of mistakes and will only be partial but will be readable more easily and will give you a general idea of what the code does. This works well only if the code is not completly obfuscated or was written in kotlin.

    I suggest learning about android apps before trying to mod them. Learn Java (and or Kotlin) for android. Learn about activities and other things that are specific to android. If you don't understand the concepts used in an android app you will probably not be able to mod apps.