Gamestudio Links
Zorro Links
Newest Posts
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/22/24 13:41
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (Akow, TipmyPip, tomaslolo), 788 guests, and 11 spiders.
Key: Admin, Global Mod, Mod
Newest Members
AemStones, LucasJoshua, Baklazhan, Hanky27, firatv
19055 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 2 of 2 1 2
Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: Joozey] #393755
02/06/12 19:19
02/06/12 19:19
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline
Expert
Rei_Ayanami  Offline
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
PHP + JavaScript [ + jQuery + ajax] + HTML + CSS3 + MySQL

Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: Rei_Ayanami] #393760
02/06/12 19:58
02/06/12 19:58
Joined: May 2002
Posts: 7,441
ventilator Offline
Senior Expert
ventilator  Offline
Senior Expert

Joined: May 2002
Posts: 7,441
web development in the 90s:
<table></table>
web development in the 00s:
<div></div>
web development in the 10s:
<script></script>

laugh

Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: ventilator] #393794
02/07/12 01:25
02/07/12 01:25
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
lol not really its more like
Code:
<section id=xxxx>
   <? 

       if get(foo)=1;
       echo"

      <script>
        javescriptcrapthatcantusequotesnow();
        
        getelelementid(xxxx).html(whole other page loaded with more php);
      </script>

       ";
    ?>
      

</section>



and that doesnt include the other page, and is highly abridged with no real code in it.


idk. its just a pain in the ass.

Last edited by lostclimate; 02/07/12 01:31.
Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: lostclimate] #393824
02/07/12 12:20
02/07/12 12:20
Joined: Feb 2009
Posts: 2,154
Damocles_ Offline
Expert
Damocles_  Offline
Expert

Joined: Feb 2009
Posts: 2,154
Or you make one big JPG in Photoshop, and pretend to have designed a fancy (static)webpage.

Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: Damocles_] #394017
02/09/12 07:36
02/09/12 07:36
Joined: Aug 2003
Posts: 7,439
Red Dwarf
Michael_Schwarz Offline
Senior Expert
Michael_Schwarz  Offline
Senior Expert

Joined: Aug 2003
Posts: 7,439
Red Dwarf
Originally Posted By: Damocles_
Or you make one big JPG in Photoshop, and pretend to have designed a fancy (static)webpage.


You joke, but that is exactly what I had to do for a client once. Granted, I sliced the image up and compressed each section with whatever was best for it. But it was still just static images.

Don't ask why he wanted it that way. I'm not sure he knew either. Maybe he read something like what you wrote and didn't get the underlying sarcasm. grin


"Sometimes JCL reminds me of Notch, but more competent" ~ Kiyaku
Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: Michael_Schwarz] #394026
02/09/12 09:25
02/09/12 09:25
Joined: Jul 2001
Posts: 6,904
H
HeelX Offline
Senior Expert
HeelX  Offline
Senior Expert
H

Joined: Jul 2001
Posts: 6,904
I think the attitude of web design changes with the uprise of HTML5 + CSS3. There are three things to consider and kinda important:

1) on different browsers, pages will look different. Some designers go that way to accept this and create designs that in fact look a bit different on every browser, instead to enforce a pixel-perfect design someone drew in photoshop

2) you don't know on which device the page is viewed and what resolution or aspect ratio it has. Is it a huge TFT display? A smartphone? A mobile phone? An iPod? A tablet? Is it vertical or horizontal? --- I learned a new term, "responsive" layout... as I understood it, it describes that a webpage re-arranges and scales it's layout itself depending on the device a user uses

3) your website is a win, if it is suited for touch devices. So, why developing a page for each device, if you can have it for all devices at the same time? I have the impression that this is possible today.

Because of these reasons I quit with learning how to make websites. Making my last portfolio was a pain in the ass and I "just" did a static website. For my next website I'll hire someone or buy a template and customize it or alike. I can not afford the time to become an expert on these technologies to compete in this hell, just for the sake of saying "I did my website alone!"...

Last edited by HeelX; 02/09/12 09:26.
Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: HeelX] #394028
02/09/12 10:19
02/09/12 10:19
Joined: May 2002
Posts: 7,441
ventilator Offline
Senior Expert
ventilator  Offline
Senior Expert

Joined: May 2002
Posts: 7,441
it's no big deal to achieve pixel perfect layouts. browsers aren't that bad anymore. form elements can still be a bit annoying sometimes and IE still doesn't support some new css stuff but there are workarounds like PIE.

responsive design isn't something new. it was very common that pages adapted to the browser window width in the 90s. now it's a bit more fancy with css switching but i don't know yet if this just is a fad.

for tablets you just shouldn't use hovering menus because you can't hover with a finger. no big problem either.



what i hate about web development is all this social media nonsense. laugh having to insert hundreds of like buttons and widgets, having to do facebook apps and iframe pages...

or if customers want apps for everything even if a mobile website would do perfectly fine.

Re: GRRR when did web design turn into a convoluded hall of mirrors? [Re: ventilator] #394180
02/10/12 18:05
02/10/12 18:05
Joined: Dec 2008
Posts: 1,660
North America
Redeemer Offline
Serious User
Redeemer  Offline
Serious User

Joined: Dec 2008
Posts: 1,660
North America
Originally Posted By: ventilator
or if customers want apps for everything even if a mobile website would do perfectly fine.

My eldest brother once designed a system for work that (on his boss's request) used a web interface to manage. When he was finished, the CEO of the company then asked, "this is an app, right?"

-.-

Last edited by Redeemer; 02/10/12 18:06.

Eats commas for breakfast.

Play Barony: Cursed Edition!
Page 2 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