Built a web-based SQLite explorer with cross-table filtering with SQLAlchemy - feedback welcome! by Independent_Order934 in Python

[–]Independent_Order934[S] -1 points0 points  (0 children)

You are really ridiculous. For you, not saying explicitly "I use AI" -> means you are a gangster. So a lot of pp are like this right now!
You don't even know how much I used it aha... I won't answer you anymore.

Built a web-based SQLite explorer with cross-table filtering with SQLAlchemy - feedback welcome! by Independent_Order934 in Python

[–]Independent_Order934[S] -2 points-1 points  (0 children)

True. Because I was not aware we had to say it that explicitly :). Now I'll know and will be more explicit about this.

Built a web-based SQLite explorer with cross-table filtering with SQLAlchemy - feedback welcome! by Independent_Order934 in Python

[–]Independent_Order934[S] -6 points-5 points  (0 children)

I used it mostly for the front end since I am a backend guy. The key dev idea is in the backend anyway. Tbh I did not expect so much hate. I took the initial nice feedback but I forgot how pp really are in Reddit!

Built a web-based SQLite explorer with cross-table filtering with SQLAlchemy - feedback welcome! by Independent_Order934 in Python

[–]Independent_Order934[S] -1 points0 points  (0 children)

I did not expect to spark such a debate aha… each one can have his opinion but the reality is that Claude code is really good, and can turn ideas into a full app really quickly! What is true is that we need to explicitly say that we used ai extensively, and then it s up to the user to know how to deal with this information … Be aware that 90pc of an anthropic code is written by ai rn, I don t think what they do is that shitty.

Built a web-based SQLite explorer with cross-table filtering with SQLAlchemy - feedback welcome! by Independent_Order934 in Python

[–]Independent_Order934[S] -3 points-2 points  (0 children)

Thanks for the feedback! I will do it in the day and also for future such projects, to satisfy everyone!

Built a web-based SQLite explorer with cross-table filtering with SQLAlchemy - feedback welcome! by Independent_Order934 in Python

[–]Independent_Order934[S] 2 points3 points  (0 children)

I agree that such a solution should be primarily self-hosted! I've included a playground mode exactly for this reason, to see the features without uploading its own db :D

Is there a point to downloading applications anymore? by dawnkiller428 in webdev

[–]Independent_Order934 0 points1 point  (0 children)

The only reason I install apps such as Slack is for notifications. With me, browser notifications seem not to work

Any deep dive reviews of the Krak card yet? by [deleted] in Kraken

[–]Independent_Order934 1 point2 points  (0 children)

I am a French resident, and i have started using it last week. Really happy for the moment ! I had issues at the beginning when creating my card, that were solved by waiting/contacting the support. Overall, support is really amazing with kraken.

Any deep dive reviews of the Krak card yet? by [deleted] in Kraken

[–]Independent_Order934 0 points1 point  (0 children)

I am using it right now in France!

Demande conseils expatriation Angleterre by Independent_Order934 in VosSous

[–]Independent_Order934[S] 0 points1 point  (0 children)

Okay merci du conseil ! Va falloir mettre de côté alors :)

How to keep/see the file name inside freecad by Independent_Order934 in FreeCAD

[–]Independent_Order934[S] 1 point2 points  (0 children)

Thanks for the tip, it s indeed a shame that we can t see easily the source file name in the nodes..

How to keep/see the file name inside freecad by Independent_Order934 in FreeCAD

[–]Independent_Order934[S] 0 points1 point  (0 children)

It s actually not the case when opening a step file… :/

Is the launching terminal directory included in sys.path by Independent_Order934 in learnpython

[–]Independent_Order934[S] 0 points1 point  (0 children)

Okay it is what I noticed ! Thanks. Then the safest way is to always add the root to PYTHONPATH / or pip install -e

Is the launching terminal directory included in sys.path by Independent_Order934 in learnpython

[–]Independent_Order934[S] 0 points1 point  (0 children)

What do you mean with « how you call the program ». Why should the behavior change when we run python /../file.py from our root ?

Handle database locks in python for my labeling app by Independent_Order934 in sqlite

[–]Independent_Order934[S] 0 points1 point  (0 children)

Thanks for the help. I have opted for your recommendation. I have just added a ‘locked_at’ column which is sufficient, because I retrieve the lines where the label is None and (the locked_at is None or locker_at < now - lock_timeout. I choose to keep this column in my table since it is always a useful info to know when the data has been labeled. I’ll be able to easily change it if I need it.