• 0 Posts
  • 16 Comments
Joined 2 years ago
cake
Cake day: July 2nd, 2023

help-circle

  • SirQuack@feddit.nltoSelfhosted@lemmy.worldWhat is Docker?
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    4 days ago

    In case of phones, there’s less of a myriad of operating systems and libraries.

    A typical Android app is (eventually) Java with some bundled dependencies and ties in to known system endpoints (for stuff like notifications and rendering graphics).

    For windows these installers are usually responsible for getting the dependencies. Which is why some installers are enormous (and most installers of that size are web installers, so it looks smaller).

    Docker is more aimed at developers and server deployment, you don’t usually use docker for desktop applications. This is the area where you want to skip inconsistencies between environments, especially if these are hard to debug.



  • I too, tried using regex to strip html tags. This was in php with hardly any knowledge of oop.

    A university education really improved me there, since they trained you in Java to a high degree within 20 weeks (alongside stuff like UML). PHP is a fine starter language, but as applications grow, a more native oop approach with build-time validation, really made me a better developer.




  • I’ve said this on reddit before, but once for a joke I tried to make a windows program to play doot.wav during October at random, and tried programming it on Linux.

    Sinds playing audio and working with the system tray was tricky, I ended up with electron.

    So yeah, an atrocious 120 mb application to play a 6kb wav file with a Math.random(). I don’t remember the memory consumption, but it was probably just as gross.