Hacker News new | ask | show | jobs
by morphar 4499 days ago
Nice! I have an XP running in VirtualBox for testing, so I just tried what you wrote - that was fun! :) I have no idea what I just did, just that it felt good, to make that impact on the screen with that little code, knowing it was done directly ;)

I will have to set some time off to understand it (better)!

Re. progress, I just have this feeling, that we are just doing the same, over and over again - then creating another language to do the same over and over again. In electronics we have components that does 1 thing, usually with different values. In the worst case, we take a standard component and program it.

I would really like to have a process, where I can architect a system and the data flow and finally code a couple of non-standard functions/classes/methods/whatever and be done :)

Good or bad, Apple is trying to do it in Xcode and several IDEs, give you a glimpse of this. Maybe they just create your HTML for you, but that's a step in the right direction. Of course it would be best to be able to re-use your own code, for the "automated" parts, instead of relying on someone else's idea of what HTML and other code should look like. These guys are trying to do it for Node.js: http://noflojs.org I think it looks really promising. It would be great to be able to concentrate on solution specific code, rather than "everything".

Re. Go, it is my one big regret, I chose Node.js over Go, a couple of years ago. I didn't have the time to understand enough of both languages, so the choice was Node.js, due to the fact "it's javascript" and that it seem good, when I did some prototypes.

The reality is, you client-side developer, should probably never touch your server-side code! It is far from the same. Same syntax, same way of creating classes, less scope problems, there is only 1 environment, so you can remove some code. But from there, it's totally different! Which of course should make sense, since it is two completely different purposes.

Currently we are maintaining our code in a way (APIs), that ensures we can change either side without problems. So they future will probably be Go, as that seems like the best fit for multi-platform (BSD/*NIX) web-service development.

I ran into Qt years ago, when I was trying to get away from Java for a desktop app. I actually ended up with Python and Qt :) It was really a much horrible experience, than I would have thought! :) Qt just worked as supposed, with it's limitations (at that time at least), which wasn't to big of a problem. Have you tried on Mac?..... :)

1 comments

(had some trouble posting on Hackernews earlier)

Re. Qt on Macs: sure, matter of fact I prefer to work with Qt on my MBP, the fonts are prettier etc.

I first tested Qt one year ago, they are really making progress, you should check out the recent release 5.2.

BTW, I've started a blog (mostly) about Qt: http://tripleboot.org

I meant to write: "... A much less horrible..." :-P Nice blog post! That will come in handy, when I get the time try out Qt... And some modern C++ :)