Log in

View Full Version : Web Designer/Developer?


OptimusPrime
August 27th, 2011, 10:19 PM
Is there anyone here who wants to be a Web Designer/Developer? I would rather be a developer and hire someone for the graphics as I suck at graphics but really good at the coding side of things.

TheMatrix
August 28th, 2011, 12:01 AM
Same here.
I can write awesome Perl-CGI things(even if I do say so myself), but my graphics aren't the best. I've begun to make it a little more aesthetically pleasing, but it's all HTML3 and CSS, so far.

I have yet to actually make something to distribute, although I've got 2 projects that might just make it to distribution.

OptimusPrime
August 28th, 2011, 08:15 PM
Perl-CGI is really difficult. I'm more into the HTML/CSS/Partly PHP side of things. Though I really want to learn more Javascript than I already do.

TheMatrix
August 28th, 2011, 08:28 PM
Perl-CGI is really difficult.
No it's not, once you get the hang of it. It's much easier than PHP, IMHO.
Basically, a simple script looks like this:

#!/usr/bin/perl -wT

use CGI; #Include the CGI module

my $CGI = new CGI; #Initialize the CGI object

#Get a URL parameter
my $param1 = $CGI->param( "param1" ) || "something_else"; #This would be ?param1=xy, or "something_else", if that is not set

#Print the header -- mandatory. PHP does this automatically, unless you specify a different value using "header()"
print $CGI->header( "text/html" );
#Print the HTML
print qq`
<html>
<head>
<title>Title</title>
</head>
<body>
<p>The value of param1 is <b>$param1</b></p>
</body>
</html>
`;





Though I really want to learn more Javascript than I already do.
TBH, you can't do very many impressive things with just javascript anymore.
It's all JQuery and AJAX nowadays.

Unsolvedmind
August 28th, 2011, 10:07 PM
I might become a web designer idk yet