9 comments

  • rvnx 4 hours ago

    Very nice to see that this project is hand-crafted and not AI-generated like 99% of the submissions here

    So, congrats on your release.

    • danterolle 2 hours ago

      Thanks! Although I had to use it for some things (like the logo, for example, and I’m not a "graphic guy"), in the end, since it’s a simple project by design, I didn’t mind, and the result isn’t bad at all.

  • zoba 41 minutes ago

    I recently discovered and have been fairly happy with PixelLab - an AI pixel art generator. I feel like they have a ways to go in features and UX, but it shows promise.

  • zamadatix 2 hours ago

    I like that it really is simply built and packaged, I'm sure it was fun to hack away at. There's something about gluing together a million packages which sucks the fun out of tinkering (for me, at least).

    • danterolle 2 hours ago

      That’s also why the project was built from scratch. The only real dependency of the project is PySide6. The icons don’t come from any package. PyInstaller is used solely for bundling purposes. As outlined in the README.md, running Tilf requires nothing more than an installed version of Python (3).

  • hug an hour ago

    Great project!

    I have one very silly question... Why is the elf logo not pixel art? :)

  • mouse_ 3 hours ago

    Congratulations!

    What made you decide to go with PySlide6?

    • danterolle 2 hours ago

      I already have some experience with Python/PySide6, and I was mainly interested in having a working prototype as soon as possible (I’m experimenting with SDL3 and animating squares isn’t exactly thrilling!). Plus, Qt widgets integrate very well with Python, it is so easy to create a section, especially when the documentation is well written, that helps a lot. Also, with PyInstaller, the build process for each platform is fairly straightforward (although for customized icons, there are a few extra steps to take).

      There are some downsides of course (like the bundle size, for example), but that's not a problem, the core idea is: double-click on Tilf and start drawing right away.

      • synergy20 43 minutes ago

        why not just the default tk widgets, might be much less of external dependencies?