View Full Version : How do you interweb programers do it?
Scuba_Steve
23rd March 2012, 15:05
I have no idea how you guys can stand website design :crazy:
Last time I played with website design Flash & hit-counters were all the rage. GeoCities (remember them???) was THE place to be, for your free personal site (or AngelFire if you were "Alternative") these were the Facebook's & Twitter's of the day & the options for site design were flash or non-flash
I wasn't to bad at the flash'y & HTML stuff back in the day, but times gone on. Flash is no longer the awesomeness it used to be, HTML has expanded somewhat significantly, many other standards & technologies have entered the interweb market. About the only thing thats remained constant is MS is still shit when it comes to the online domain. How da hell do you guys keep up???
I tried to jump back into doing a website... I'm fucking lost :confused:
I guess maybee it's just the decade or so I haven't been playing with it has caught up with me. But fuck, I haven't played with many things in that time & this is pretty much the only one I can't get my head back round.
To the people that actually choose to deal with this, hats off to you :drinknsin:niceone:
iYRe
23rd March 2012, 15:17
wordpress... (or if you are a bit silly, joommla or drupal )
Thats how they (we - sysadmin not a programmer) do it.
sil3nt
23rd March 2012, 16:54
Yep homos (honda riders i mean) use a prebuilt CMS with whatever shitty theme they can find. Ok they work well in some situations but are overkill for others.
It is still fairly simple to build a site yourself. Back in the day of geocities and angelfire tables and frames were popular to construct the layout. Thankfully this has changed and tables should only be used for displaying data.
If you really wan't to learn then read up http://htmldog.com/
iYRe
23rd March 2012, 17:34
seems like the forementioned homo's, err, honda riders, are on to something, since reinventing the wheel is a retarded thing to do.
(ps, not everyone can code, not everyone is capable of coding, or even have the time to learn).
mashman
23rd March 2012, 17:48
KISS... HTML and javascript is all you need for a site these days... and iffen yer brave enough, you can do it all in notepad :yes:
Edity Edit: and CSS.
Scuba_Steve
23rd March 2012, 18:25
KISS... HTML and javascript is all you need for a site these days... and iffen yer brave enough, you can do it all in notepad :yes:
Edity Edit: and CSS.
Yea never learnt me java or CSS (PHP also seems to be useful for interwebs)
Ah I just gave up & ended up using iWeb (Yea, yea I know :facepalm: Shutup!) I didn't feel like re-learning that which I've spent 10+ years forgetting as well as the extras just for 1 site.
bogan
23rd March 2012, 18:48
Quick question on similar topic, what language/templates should I use for a site with a few info pages, and shopping cart which requires custom user data (entered by user) for the item, and also has communication (data/image generation/retreival) to methods and a database managed in C#. Maybe not such a quick question then...
mashman
23rd March 2012, 19:13
Yea never learnt me java or CSS (PHP also seems to be useful for interwebs)
Ah I just gave up & ended up using iWeb (Yea, yea I know :facepalm: Shutup!) I didn't feel like re-learning that which I've spent 10+ years forgetting as well as the extras just for 1 site.
hee hee... HTML, javascript (not java) and CSS are all you will ever need for the interweb... until you start needing to hook into a database imho.
Quick question on similar topic, what language/templates should I use for a site with a few info pages, and shopping cart which requires custom user data (entered by user) for the item, and also has communication (data/image generation/retreival) to methods and a database managed in C#. Maybe not such a quick question then...
for me it'd be MVC 4, WebAPI, EntityFramework with the html rendering on the client with javascript. I recently finished a project with 3rd party database and GUI designers using forms authentication, MVC 3, no WebAPI (next time my pretty), ajax calls to the controllers, EntityFramework (I use a homemade database "reading" model code generator instead of EDMX for more "control" and a lighter app), SQL 2008 and html rendering using javascript/jquery in a "RAD" environment (i.e. when the client wanted something changed, we changed it almost as quickly as they had asked for it). It all went rather well... but I still miss XML and XSLT and have rekindled my love of javascript/jquery. All that was missing were a couple of attributes to deal with cross-site and injection attacks in the controllers.
bogan
23rd March 2012, 19:24
for me it'd be MVC 4, WebAPI, EntityFramework with the html rendering on the client with javascript. I recently finished a project with 3rd party database and GUI designers using forms authentication, MVC 3, no WebAPI (next time my pretty), ajax calls to the controllers, EntityFramework (I use a homemade database "reading" model code generator instead of EDMX for more "control" and a lighter app), SQL 2008 and html rendering using javascript/jquery in a "RAD" environment (i.e. when the client wanted something changed, we changed it almost as quickly as they had asked for it). It all went rather well... but I still miss XML and XSLT and have rekindled my love of javascript/jquery. All that was missing were a couple of attributes to deal with cross-site and injection attacks in the controllers.
Fuck, that is a lot of acronyms and shit, maybe I'll just enlist somebody else to do it...
mashman
23rd March 2012, 19:33
Fuck, that is a lot of acronyms and shit, maybe I'll just enlist somebody else to do it...
:rofl:... much easier than it sounds... I highly recommend here (http://www.asp.net/mvc)... and they also have a shopping cart project (Music Store) that you could "use" :)
Scuba_Steve
23rd March 2012, 20:09
hee hee... HTML, javascript (not java) and CSS are all you will ever need for the interweb... until you start needing to hook into a database imho.
:laugh: had to search it out, that just shows how much I know about Java & JavaScript. :pinch:
mashman
23rd March 2012, 21:29
:laugh: had to search it out, that just shows how much I know about Java & JavaScript. :pinch:
shit mate, I'm still hearing about things I've never heard of before and I've been doing this for 15+ years... I hadn't heard of MVC until I left my last serious job and everyone wanted the skills (even though they didn't use them :yes:)... and MVC was in version 3 :rofl:... was damned easy to pick up though as I was coding in the MVC pattern before the pattern existed :), seemed like a sensible way to do it at the time. The code generator I have used to produce MVC styled objects for asp 1.1 although I had to reflect my own properties (all hail the static class :yes:)... once I heard about MVC 3 it took a day or so to update my code generator to spit out MVC models, views and controllers for razor... fun little project whilst unemployed and I've made good use of it on a couple of projects since. Some day I'll get my A into G and webify it (got a bug or two to fix :innocent:). I was gonna put it online 7ish years ago, but there was much football to watch, a new baby in the house and Halo to play :facepalm:... regrets, I've had a few.
sil3nt
23rd March 2012, 22:00
for me it'd be MVC 4, WebAPI, EntityFramework with the html rendering on the client with javascript. I recently finished a project with 3rd party database and GUI designers using forms authentication, MVC 3, no WebAPI (next time my pretty), ajax calls to the controllers, EntityFramework (I use a homemade database "reading" model code generator instead of EDMX for more "control" and a lighter app), SQL 2008 and html rendering using javascript/jquery in a "RAD" environment (i.e. when the client wanted something changed, we changed it almost as quickly as they had asked for it). It all went rather well... but I still miss XML and XSLT and have rekindled my love of javascript/jquery. All that was missing were a couple of attributes to deal with cross-site and injection attacks in the controllers.lolwut. Biggest bunch of waffle I have ever read.
mashman
23rd March 2012, 22:08
lolwut. Biggest bunch of waffle I have ever read.
:rofl: need a translator ;)
sil3nt
23rd March 2012, 22:12
:rofl: need a translator ;)Hah nope. A good way of making clients think you are doing something incredibly complicated. Might have to copy it :shifty:
mashman
23rd March 2012, 22:17
Hah nope. A good way of making clients think you are doing something incredibly complicated. Might have to copy it :shifty:
ha ha ha haaaaaaaaaa... it certainly sounds that way doesn't it, but if you use it it will cost you $1 million. My client was a heavy techy fulla, he probably wrote the internet heh, and he was much surprised at the effectiveness of the solution... almost as much as I was at how easy it was to create the solution given the time frame available.
Scuba_Steve
24th March 2012, 08:41
Halo to play :facepalm:... regrets, I've had a few.
Yea I see that :shutup:
Zedder
24th March 2012, 09:08
shit mate, I'm still hearing about things I've never heard of before and I've been doing this for 15+ years... I hadn't heard of MVC until I left my last serious job and everyone wanted the skills (even though they didn't use them :yes:)... and MVC was in version 3 :rofl:... was damned easy to pick up though as I was coding in the MVC pattern before the pattern existed :), seemed like a sensible way to do it at the time. The code generator I have used to produce MVC styled objects for asp 1.1 although I had to reflect my own properties (all hail the static class :yes:)... once I heard about MVC 3 it took a day or so to update my code generator to spit out MVC models, views and controllers for razor... fun little project whilst unemployed and I've made good use of it on a couple of projects since. Some day I'll get my A into G and webify it (got a bug or two to fix :innocent:). I was gonna put it online 7ish years ago, but there was much football to watch, a new baby in the house and Halo to play :facepalm:... regrets, I've had a few.
Regrets? Nowhere do I see a mention of riding a motorbike! I fart in your general direction.
mashman
24th March 2012, 09:47
Yea I see that :shutup:
:rofl: if you're gonna FPS, it may as well be killing aliens... although I did a fair bit online before I came to NZ... only gave up because of (Brando Apocalypse Now voice) THE LAG, THE LAG.
Regrets? Nowhere do I see a mention of riding a motorbike! I fart in your general direction.
bloody froggy... I wish riding das Prila was higher up on my list of priorities (unfortunately it doesn't pay the bills), but it's not and I think it's because my mother is a hamster and my father smells like elderberries.
Zedder
24th March 2012, 10:22
:rofl: if you're gonna FPS, it may as well be killing aliens... although I did a fair bit online before I came to NZ... only gave up because of (Brando Apocalypse Now voice) THE LAG, THE LAG.
bloody froggy... I wish riding das Prila was higher up on my list of priorities (unfortunately it doesn't pay the bills), but it's not and I think it's because my mother is a hamster and my father smells like elderberries.
That explains it fully.
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.