On Sep 24, 2010, at 12:36 AM, Marko Weber wrote:

>
> On Thu, 23 Sep 2010 21:13:21 +0100, Paul Cockings <ds...@cytringan.co.uk 
> >
> wrote:
>> On 23/09/2010 19:58, Julien Valroff wrote:
>>>
>>> Well, thank you, but nothing very exiting, but if this can give  
>>> ideas
> to
>>> anyone…
>>
>> Almost every day I wish I could code..... :-(
>
> So why dont you start to learn? Half year ago i didnt know what a  
> shebang
> line is.
> I startet with a nice book that explain for dummies all step by step.
> Nowaday i can do little scripts in bash. Also HTML/XHTML is "easy" to
> learn.
> (but i stopped 2 years ago cause doing websites annoyed me)
> If you are in mood you can dive into php. imagine what you can do with
> that easy stuff....
> Same with Linux and Servers. At start i had no idea how to do  
> anything on
> console without graphic interfaces.
> You just have to start, thats all.....
>
> just my 2 cents....

Regardless of the language the majority of things the average person  
wants accomplish with code can be broken down into a series of simple  
steps.

1. Learn what a variable is and how to populate it. variable = fred
2. Learn what an array (aka list) is and how to populate one with  
variables. array = red, green, blue
3. Learn how to test a variable. if ( variable > 0 ) do this; else do  
that;.
4. Learn how to loop through an array and test each element. for  
( variable in array ) ; if ( variable > 0 ) do this; else do that.

I would suggest starting a shell (command prompt, command line), no  
server setup required.

http://www.cyberciti.biz/faq/bash-for-loop/

// Brad

// Brad


------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
Dspam-user mailing list
Dspam-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspam-user

Reply via email to