Gamestudio Links
Zorro Links
Newest Posts
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 1,310 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
GRRR when did web design turn into a convoluded hall of mirrors? #393597
02/05/12 06:43
02/05/12 06:43
Joined: Oct 2005
Posts: 4,771
Bay City, MI
lostclimate Offline OP
Expert
lostclimate  Offline OP
Expert

Joined: Oct 2005
Posts: 4,771
Bay City, MI
Ok, so updating my web design skills...

wtf.

Im tired of not remembering which nested f*cking language im writing in, when writing in a php file loaded using ajax thru jquery which of course uses javascript which only runs inside php if a certain variable is set. all of this is styled by css, and marked up in html5.


AHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH.

Last edited by lostclimate; 02/05/12 06:44.
Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: lostclimate] #393617
02/05/12 16:12
02/05/12 16:12
Joined: Dec 2008
Posts: 1,660
North America
Redeemer Offline
Serious User
Redeemer  Offline
Serious User

Joined: Dec 2008
Posts: 1,660
North America
This is exactly why I couldn't get myself very deep into web design.

My brother-in-law does this for a living, I don't know how he can stand it.


Eats commas for breakfast.

Play Barony: Cursed Edition!
Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: Redeemer] #393623
02/05/12 16:34
02/05/12 16:34
Joined: Sep 2007
Posts: 1,093
Germany
T
Toast Offline
Serious User
Toast  Offline
Serious User
T

Joined: Sep 2007
Posts: 1,093
Germany
Use more Flash! grin

Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: Toast] #393628
02/05/12 17:11
02/05/12 17:11
Joined: Oct 2004
Posts: 4,134
Netherlands
Joozey Offline
Expert
Joozey  Offline
Expert

Joined: Oct 2004
Posts: 4,134
Netherlands
Don't use flash! tongue
It's actually quite doable, if you can split it up in back-end / front-end and MVC or any other pattern.

On mobile, we develop frontend in html5 to display and parse websites, and use javascript with wormhole to communicate to C/C++ via XML.

Last edited by Joozey; 02/05/12 17:13.

Click and join the 3dgs irc community!
Room: #3dgs
Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: Joozey] #393631
02/05/12 17:31
02/05/12 17:31
Joined: Jan 2002
Posts: 4,225
Germany / Essen
Uhrwerk Offline
Expert
Uhrwerk  Offline
Expert

Joined: Jan 2002
Posts: 4,225
Germany / Essen
Originally Posted By: Joozey
frontend in html5 to display and parse websites, and use javascript with wormhole to communicate to C/C++ via XML.

Oh my god. crazy I always knew why I didn't get into that web shit. ^^


Always learn from history, to be sure you make the same mistakes again...
Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: Uhrwerk] #393635
02/05/12 19:10
02/05/12 19:10
Joined: Oct 2004
Posts: 4,134
Netherlands
Joozey Offline
Expert
Joozey  Offline
Expert

Joined: Oct 2004
Posts: 4,134
Netherlands
When developing for mobile (via mosync for example) you can choose to do stuff in C/C++ only, but if you want to read in websites and alter them with C/C++, you'll need a html(5) parser available first of all. Luckily android and ios are capable of doing just that, and mosync has template projects that cover the parsing for you, you just need to catch the events that come in via wormhole in C/C++. But if you need to do a bit more than just receiving and sending you need to know javascript/html5 too in order to extent both frontend and backend.


Click and join the 3dgs irc community!
Room: #3dgs
Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: Joozey] #393640
02/05/12 19:50
02/05/12 19:50
Joined: Sep 2003
Posts: 9,859
F
FBL Offline
Senior Expert
FBL  Offline
Senior Expert
F

Joined: Sep 2003
Posts: 9,859
Pfff.
Sounds more fun than creating some CLI Winforms app, docking unmanaged C++ code to it, add things with WinApi, hook some unmanaged static lib, pack everything into a DLL which then docks to A8 routing the engine output into the Winforms application which requires hacking the Windows message loops.

I learned so many things I never wanted to learn.
PHP, Javascript, HTML, CSS and everything mixed together with some SQL database? I have no fears... not anymore laugh

Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: FBL] #393642
02/05/12 20:01
02/05/12 20:01
Joined: May 2002
Posts: 7,441
ventilator Offline
Senior Expert
ventilator  Offline
Senior Expert

Joined: May 2002
Posts: 7,441
it always has been like that and isn't that bad.

it only would be great if python webhosting were as ubiquitous as php webhosting since i would like to do more projects with django. python in the browser as an alternative to javascript would be awesome too but with jquery javascript is acceptable.

Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: Uhrwerk] #393726
02/06/12 17:30
02/06/12 17:30
Joined: Oct 2005
Posts: 4,771
Bay City, MI
lostclimate Offline OP
Expert
lostclimate  Offline OP
Expert

Joined: Oct 2005
Posts: 4,771
Bay City, MI
Originally Posted By: Uhrwerk
Originally Posted By: Joozey
frontend in html5 to display and parse websites, and use javascript with wormhole to communicate to C/C++ via XML.

Oh my god. crazy I always knew why I didn't get into that web shit. ^^


lol soooo relieved to not be the only person amused by this statement. doable is not the issue. maintaining my sanity is laugh


@vent yeah i know its always been like that, but it slowly built into that. back when bandwith was a commodity people didnt need realtime updating stats without a window refresh linking to a mysql server. They went to a page and read a <td></td> table.

Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: lostclimate] #393752
02/06/12 19:13
02/06/12 19:13
Joined: Oct 2004
Posts: 4,134
Netherlands
Joozey Offline
Expert
Joozey  Offline
Expert

Joined: Oct 2004
Posts: 4,134
Netherlands
It's just... every language is good in something else. XML is a medium for transporting data, like JSON, so the model. Html5 is great for displaying stuff, the view. C/C++ works best for doing the logic stuff, the controller.

Put everything together and you have the MVC pattern.
Well not entirely but just to make a point. It's pretty clear to me, I don't understand too well whats so insane about it.

Last edited by Joozey; 02/06/12 19:21.

Click and join the 3dgs irc community!
Room: #3dgs
Page 1 of 2 1 2

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1