On Wed, 2003-09-24 at 08:12, Marek Kilimajer wrote:
> I bet you don't indent your code either. And all white characters are 
> useless too, they only slow interpreter down. Good coder will understand 
> this at a glimpse:
> if($pos_params!=false){$back_url=substr($HTTP_GET_VARS['origin'],0,$pos_params);$back_url_params=substr($HTTP_GET_VARS['origin'],$pos_params+1);}else{$back_url=$HTTP_GET_VARS['origin'];$back_url_params='';}

*COUGH* *COUGH* EVERY REAL coder knows that you have to use the
following brace style for your code to be accepted into the l33t
hierarchy of [EMAIL PROTECTED]:

if( $pos_params != false )
{
    $back_url = substr( $HTTP_GET_VARS['origin'], 0, $pos_params );

    $back_url_params =
        substr( $HTTP_GET_VARS['origin'], $pos_params + 1 );
}
else
{
    $back_url = $HTTP_GET_VARS['origin'];
    $back_url_params = '';
}

And in case you didn't notice, all lines are broken to fit in a 78
column width so they can be printed without wrapping on most printers in
ascii mode. If you didn't know this or don't write your code like this
then you're just not worthy of our intellectual circle.

Cheers,
Rob.

Ps. This has been a joke, and while I do use the above coding style, I
could hardly pretend to force my own style on anyone else even if
everyone else does write unreadable code ;)


> 
> Jim Lucas wrote:
> > I like NoteTab from www.notetab.com
> > 
> > It doesn't do syntax highlighting, but if you need that, then you need to
> > learn to code better.
> > 
> > And best of all, there is a free version that does most everything the full
> > priced copy does.
> > 
> > Plus, one added feature is, is that it will allow you to do internal
> > scripting.
> > 
> > 
> > Jim Lucas
> > 
> > ----- Original Message ----- 
> > From: "jeffrey pearson" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, September 23, 2003 8:59 AM
> > Subject: Re: RE: [PHP] PHP Editor - which to use?
> > 
> > 
> > 
> >>I like to use Edit Plus. www.editplus.com
> >>
> >>It has the syntax highlighting for php, perl, java, and many others
> > 
> > through modules that are downloadable from their web site, DOESNT change
> > code like dreamweaver does and its cheap ($25).
> > 
> >>Jeff Pearson
> >>
> >>----- Original Message -----
> >>From: "Ruessel, Jan" <[EMAIL PROTECTED]>
> >>Date: Monday, September 22, 2003 2:00 am
> >>Subject: RE: [PHP] PHP Editor - which to use?
> >>
> >>
> >>>well, i like to use dreamweaver mx or textpad with the syntax
> > 
> > highlighting
> > 
> >>>file you additionally have to download. i dunno if there are special
> > 
> > "php-
> > 
> >>>must-have-editors".
> >>>grtz
> >>>jan
> >>>
> >>>-----Original Message-----
> >>>From: Binay [EMAIL PROTECTED]
> >>>Sent: Montag, 22. September 2003 10:58
> >>>To: [EMAIL PROTECTED]
> >>>Subject: [PHP] PHP Editor - which to use?
> >>>
> >>>
> >>>Hi everybody!
> >>>
> >>>Please suggest me  a good PHP editor like ( Microsoft's Interdev for
> > 
> > ASP)
> > 
> >>>to write my php programs/scripts and get a visual feel.
> >>>
> >>>
> >>>Thanks
> >>>Binay
> >>>
> >>>-- 
> >>>PHP General Mailing List (http://www.php.net/)
> >>>To unsubscribe, visit: http://www.php.net/unsub.php
> >>>
> >>>
> >>
> >>-- 
> >>PHP General Mailing List (http://www.php.net/)
> >>To unsubscribe, visit: http://www.php.net/unsub.php
> >>
> >>
> > 
> > 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
-- 
.------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for       |
| creating re-usable components quickly and easily.          |
`------------------------------------------------------------'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to