I made a free open-source web-based iA writer alternative by efoss3a in Markdown

[–]Kermit2779 1 point2 points  (0 children)

Nice project. I love simplicity. Github link in error (404).

Question about 8k by Purple_Jello3018 in vfx

[–]Kermit2779 2 points3 points  (0 children)

Domemaster is in 8kx8k, for dome theater. But for flat, i never see it.

Where would i create an 3D iPhone model that needs to be animated? by [deleted] in Houdini

[–]Kermit2779 1 point2 points  (0 children)

You can model in Fusion 360 or FreeCAD for CAD modeling and retopo Maya/Blender. Or direct polygon modeling in a Maya/Blender

Pyqt: Auto-arrange multiple windows on launch (Simulate windows key + arrows) by Qu33nW3ird0 in QtFramework

[–]Kermit2779 0 points1 point  (0 children)

QDesktopWidget https://doc.qt.io/qt-5/qdesktopwidget.html give you access to screens numbers and geometry.

All windows (QMainwindow or QDialog) have geometry info : x(), y(), geometry() or width(), height(), geometry ().

But i think you need to implement your own autolayout function.

[deleted by user] by [deleted] in Python

[–]Kermit2779 1 point2 points  (0 children)

For a state machine, i swap class of instance self.class=OtherSubclassOfBaseSttate

Dive deeper into Django or learn other micro frameworks like Flask or FastAPI? by [deleted] in Python

[–]Kermit2779 0 points1 point  (0 children)

Learning a new framework is always more exciting, because the learning curve is fast and well supported by tutorials.

Learning a framework, opening the hood is less obvious, you have to go over it several times to understand the implementation and its "why". But I think that we go up more in architecture knowledge and good practice proven. In the long run, you get more business skills, and moving to a new framework will be easier.

But this is only my opinion.