I am several hundred opossums in a trench coat

  • 1 Post
  • 46 Comments
Joined 2 years ago
cake
Cake day: July 1st, 2023

help-circle



  • You’re mostly right. Newer devices won’t share their entire app list by default, at compile time you need to enumerate every app you want to query for, or add what are essentially a list of intent filters (which are like “I want to talk to apps that take this kind of message and payload”). There is still a permission that lets you list all apps like you were able to on pre API 30 devices, but Google makes it pretty difficult to get onto the app store in that state.

    You can still send intents as much as you like though (as long as you know the recipient), since they’re the basis for all inter-process communication.

    My point is more that an app developer can’t and doesn’t need to use the play store to get the list of apps you have on your phone. This requirement to have the play store almost certainly isn’t malicious and I disagree with the notion that apps shouldn’t be able to use what is essentially system infrastructure to improve their apps. That said, given this is an app targeting the fediverse, it would have been nice for the developer to have made a universal APK build that didn’t require the Play Store.




  • Social media is not a good replacement for real life community (look through my comment history and you’ll see me expressing exactly that repeatedly), but we can’t be oblivious to the fact that for many children their only connection to fellow queer people may be online. If you live in a small town or community where there are no other openly queer people, or if your school, peers, and parents are hostile to queer people you won’t have much choice in where you find community.


  • Emily (she/her)@lemmy.blahaj.zonetoTechnology@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    edit-2
    30 days ago

    Are you Australian? That just feels like kind of a US centric lens to analyze this through, though you’re right that loss of community is a byproduct.

    Like, I’m not exactly happy with the Albanese government, but I would say that most negative LGBTQ things they have said or done have been cowardly attempts to avoid drama from the Liberals, not active bigotry




  • Not every change is going to completely overhaul the app. More than likely, the changes are a fix to some obscure bug not caught in testing that only affects a small percentage of devices. Just because you don’t encounter it with your workflow and device doesn’t mean it isn’t a critical bug preventing someone from using the app. It could also be a new feature targeting a different use case to yours. It could even be as simple as bringing the app into compliance with new platform requirements or government regulations (which can happen a couple times a year, for example Android often bumps the minimum SDK target such that apps are forced to comply with new privacy improvements).






  • After a certain point, learning to code (in the context of application development) becomes less about the lines of code themselves and more about structure and design. In my experience, LLMs can spit out well formatted and reasonably functional short code snippets, with the caveate that it sometimes misunderstands you or if you’re writing ui code, makes very strange decisions (since it has no special/visual reasoning).

    Anyone a year or two of practice can write mostly clean code like an LLM. But most codebases are longer than 100 lines long, and your job is to structure that program and introduce patterns to make it maintainable. LLMs can’t do that, and only you can (and you can’t skip learning to code to just get on to architecture and patterns)