• 2 Posts
  • 20 Comments
Joined 9 days ago
cake
Cake day: July 30th, 2025

help-circle
  • It might have been that some employee just tried out cursor and accidentally added it to the repo. That is true.

    However the complete lack of communication suggests otherwise. And depending on your threat level you should always assume worst.

    As for the use of ai in general, in my opinion there are occasional places where ai can be used without compromising security.

    So depending on your threat level this can actually ne a big deal.










  • If you are writing code that could easily introduce security vulnerabilities, you HAVE to understand it. No matter if you ai generate it or don’t. So you have to learn the language either way. If you are that good with a language that you can understand its code, it will most likely be easier to write your code manually than to generate it and completely understand it.

    If you are only doing small PHP plugins and the ai doesn’t do anything critical like reading/writing files or taking user input, it should be fine though.






  • Fair point. I compared the most common usecases of python and JS.

    Writing some random desktop application with python is actually quite nice. Distribution is easy and if you use the type system properly it doesn’t really matter that it is not statically typed (with my 7 years of python experience I can assure you, most people don’t use it properly). The standard libraries are really good. Where it can be annoying is managing your environments, but if you somewhat know what your doing its also really easy. Where these applications get finniky is, adding an ui. You either gonna use tkinter which looks just awful, qt or GTK. If using the last two it gets really annoying to package them.

    With JS everything will be awful. As for UI you’d use electron which is arguably even worse than tkinter.

    As for writing web server with a Python Backend vs JS Backend I can’t really argue with you there. Node is literally made for that so yea. However python Webservers are not that bad as people make them seem. They are quite good. Go is the right tool for the job though

    Frontend is not a fair comparison, because you need to do sooo much fuckery to even get python support, and then you got a webassembly interpreter that still calls the JS Dom API shit.