• 2 Posts
  • 12 Comments
Joined 3 years ago
cake
Cake day: August 24th, 2023

help-circle

  • DeathByDenim@lemmy.worldtoLinux@lemmy.mlFLX1s is Launched
    link
    fedilink
    English
    arrow-up
    9
    ·
    7 months ago

    From the product page:

    Powered by Linux at its core, our device transforms the mobile experience into something far beyond ordinary smartphones. It combines the stability and openness of a full desktop-class operating system with the convenience of a pocket-sized device. This means it is not limited to mobile apps alone. Native Linux applications and Android apps run side by side, delivering true versatility and freedom of choice

    I suspect it uses Waydroid so there may be issues with Android apps that rely on Google Play services or even worse, depend on the Play Integrity API.




  • We use KMyMoney for all our stuff for years now. Very happy with it! It came in very useful when we were considering some big purchases to figure out what we could afford.

    It can read Quicken files which most banks support. Those have account numbers inside them, so KMyMoney will automatically recognize which account it should go into if you set enter those numbers when setting up the account in KMyMoney in the first place. Some banks only allow you to export to CSV which is a bit more cumbersome, but KMyMoney supports that too.

    It will intelligently categorize statement entries too. If you’ve set a particular entry as belonging to a certain category once, it will remember that for the next time you import a statement. Then you just confirm.

    Those categories are very handy when making the reports to see our spending and income patterns.

    Anyway, I highly recommend it.





  • Cute! 😀

    It mostly works. I think line 103 should maybe be:

    os.remove(os.path.join(cdata, "teat.txt"))
    

    So, “teat.txt” instead of “eat.txt”. I think this prevents the cat from ever getting happy since that line causes an error and it never reaches image.set_from_file(os.path.join(current_dir, "data/happy.png")) which is very sad!

    Actually, you may just want to catch the error if the file happens to not exist. Like this:

        try:
            os.remove(os.path.join(cdata, "teat.txt"))
        except FileNotFoundError:
            pass