MozillaZine

Mozilla Foundation Looking for Web Programmers

Friday July 23rd, 2004

Blake Ross writes: "We are looking for three programmers who are proficient in Perl or other web apps languages and can volunteer their time and skill to help us build the tools we will need to make three upcoming community marketing campaigns successful. These are some of our most exciting campaigns yet and promise to net us hundreds of thousands of users if executed properly. The work that's needed is simple and should be trivial for anyone skilled in perl or other web apps languages. Please send mail to blake at cs.stanford.edu if you are interested and would like more details."

#1 unmunged?

by mlefevre

Friday July 23rd, 2004 9:57 AM

Blake seems to have studiously avoided publishing that email address in a harvestable format elsewhere, and I think he'd succeeded until this story appeared...

#2 Re: unmunged?

by kerz

Friday July 23rd, 2004 11:21 AM

fixed

#7 Re: unmunged?

by dezydery

Saturday July 24th, 2004 12:53 AM

Depends how broad the definition of "harvestable". I'd be amazed if some spammers aren't reaping prime e-mail addresses by parsing out the at dot stuff.

#3 *Hopeful*

by Jimbobbob

Friday July 23rd, 2004 12:39 PM

Well, I applied to help, I'd be an honour to help out the creators of my favorite browser.

#4 be glad to help

by flacco

Friday July 23rd, 2004 12:48 PM

but i only do ASP and use ActiveX controls.

best viewed in Internet Explorer 6.0!

#5 PHP?

by CeleronXL

Friday July 23rd, 2004 1:46 PM

What about PHP? I could do that.

#6 PHP

by tsahi

Friday July 23rd, 2004 2:43 PM

well, he wrote "or other web apps languages." i think php answers that definition. contact him and ask.

#8 Reply

by Dizzle

Saturday July 24th, 2004 10:01 AM

Not sure why anyone would start a new web app in anything other than PHP?

Classic ASP is inferior. ASP.NET does not have any Linux runtimes supported by MS. Java? Well they are backing PHP. Cold Fusion. Circa 1995 Perl. PHP was invented because of the difficulties of using PERL as a web app language.

#9 Re: Reply

by brolewis

Saturday July 24th, 2004 10:07 AM

Perl and Python, the other 'P' languages, make for excellent web app languages as well. My employment uses Python to design online web applications, so I can think of at least a couple of reasons to choose something other than PHP. :)

#10 Re: Reply

by Stuart

Sunday July 25th, 2004 11:17 AM

A lot of people hate PHP, I'm not one of them, but I can completely understand why someone might want to use Perl instead.

Also, I don't know how much more difficult it would be to create an entire new language that is incredibly similar to Perl than learn how to write actual Perl. I guess people can be happy that someone felt the need and had the time though.

#11 Re: Reply

by bmacfarland

Monday July 26th, 2004 7:03 AM

Coldfusion is a solid language as is the Java/JSP combination. I was kind of anti-Java because it takes a while to get the environment set up to go, but I've found it better than PHP. Not that I don't like PHP, I do.

#13 Corrections!

by mrmuskrat

Monday July 26th, 2004 6:19 PM

"PHP was invented because of the difficulties of using PERL as a web app language."

First of all, Perl is the language, perl is the interpreter and PERL is only used by people who know nothing about Perl.

Second, PHP was originally written in "Circa 1995 Perl" as a CGI script. It was called PHP-Tools.

Third, Perl is extremely easy to use for web apps. What's so difficult about this?

#!/usr/bin/perl # CGI script that creates a fill-out form # and echoes back its values. # straight out of the documentation for the CGI module.

use CGI qw/:standard/; print header, start_html('A Simple Example'), h1('A Simple Example'), start_form, "What's your name? ",textfield('name'),p, "What's the combination?", p, checkbox_group(-name=>'words', -values=>['eenie','meenie','minie','moe'], -defaults=>['eenie','minie']), p, "What's your favorite color? ", popup_menu(-name=>'color', -values=>['red','green','blue','chartreuse']),p, submit, end_form, hr;

if (param()) { print "Your name is",em(param('name')),p, "The keywords are: ",em(join(", ",param('words'))),p, "Your favorite color is ",em(param('color')), hr; }

#14 Re: Corrections!

by mrmuskrat

Monday July 26th, 2004 6:21 PM

It would look better if I could get some formatting...

#12 Bring on the Perl

by billpena

Monday July 26th, 2004 8:13 AM

I'm all about the Perl over here! And I'm well versed in the ways of JavaScript. Maybe I can help? billpena at the Gmail thang dot com.