Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Qchmqs5378y@Artemix if i used qt i would most likely not use any binding beside pyside/pyqt because all of them seem to popup and die quickly
also there is qtsharp that I'm praying to gods it won't die quickly -
Qchmqs5378y@Artemix the wikipedia page say it's discontinued by trolltech (old qt owner) I'll try it tomorrow anyway
-
Qchmqs5378y@jlave215 electron is a hypster ass fat bitch, there's no sane excuse to bundle a fucking webserver in a web browser, when you can easily implement a dom and ecmascript inside a widget in any gui toolkit
-
I'm writing a GUI system for Java but it's probably way too basic for your needs. It has its ups and downs but the main down is that I am one person and school takes most of my time. Very fast though, and based off swing. Has OpenGL mode. Size values are strings (Based off HTML - percentages, pixels, or calc() to do both). Im quite proud of what little bit is written. Fully Javadoc'd.
-
bero28y
-
Qchmqs5378y@stuqshwk I'm on the php hate, not the java (yeah i wrote most of my code in php, but a turd is a turd)
-
stuqshwk2278y@Artemix "The JVM is fast, it is probably one of the fastest runtimes out there. It just keeps getting faster and leaner with time. Thousands of the smartest engineers are working to make it better, and even more have contributed in the last 21 years." What is that supposed to mean? Comparing e.g. C++ and Java, programs doing the same task, Java is dangerously obese. Just having a garbage collector blows your RAM usage by default. Javas personal trainer is Ronald McDonald!
-
On top of that, unlike C++ Java cannot use CPU registers due to its platform independency. Java can only use the stack for calculations, which is always slower than registers.
been exploring the options for cross platform desktop app, and i found :
java : both awt and swing look ugly, i really like OOP of java, and the way projects are organized is easy to scale, but i need to deploy the jdk, and the speed on gui apps isn't that great
C# : (.net/ mono, i can't grasp F# and vb is stupid) looks native on windows, not so much alien on both linux/mac, and being a java cousin is a pro, i found the Eto library for mono even looks more native on *ix than winforms
wxwidgets: for C/C++ so far this looks like the best option for total native feel and performance, but man i fucking hate C code, and this looks a lot like C code, even with proper native Cpp support, maybe i should dive deeper in it
GTK+ : did any one mention C code ? because this mother fucker is plain C with macros all over the place, it made me realize why wx is promoted as Cpp friendly, i doubt I'll use this
tcl/tk : even tho ive never wrote a single line of tcl in my life, the tk lib is the default ui for both python and ruby on all supported platforms,
and i really love ruby, and Python is Usually a joy to work with
Qt : this by far looks like the best option, proper OOP in C++, bindings for python (ruby binds are outdated), almost native look and feel on supported platforms, and even has a gui builder in xml or json/js (qml) however i bet I'll use such a thing, the building tho depends on an external preprocessor "moc" and some wicked macros, also makes working with templates a fucking mess, and the heavy dependence on QObject inheritance makes integrating external libraries a bit more tiring, the signal slot system makes more sense in python than in C++, since it makes me confused about the flow of the code
lazarus: is a freepascal implementation that looks and feels like delphi, not so much for native look and feel, but good performance and easy language to handle
electron : this fat mofo is fat, it's the slowest of all options, if i want an html app, I'll just compile a stripped down webkit and deploy that
what do you think ? and did i miss something ?
undefined
dem apps