Making a scripting tutorial

V

Vincent Foley

Hello everyone,

I am part of a Linux User Group in Quebec, and I would like to make a
presentation one day about Ruby. Since most people there are not
programmers, but mostly system administrators and that most of them
know nothing about scripting beyond piping a command into grep, I
thought it would be a nice opportunity to show them Ruby and how it can
help them in their everyday tasks.

Now, I would like to know, what sort of material I should cover for an
introduction? Is there already material out there that I could ues? I
will definitly need an introduction to Ruby, its syntax, etc. that is
as concise and clear as possible. My plan of the tutorial right now
would be something along the lines of:

- Running a Ruby program and using irb
- Basic classes (Integer, Array, String)
- Showing how to do input/output with gets and puts
- Showing how to do file and directory operations
- Conditionals and loops (probably limit it to if, while and for x in)
- Using regular expressions*
- Useful modules (Net::Http, Net::SSH, Net::FTP, anything else that
would be useful for sysadmin?)
- Have one or two practical scripts

* could be skipped if the rest is too long

How does that sound? Is there stuff I'm forgetting that I should
mention? Is it too long for just a first introduction? Or good
enough, and if they're interested, they can buy the Pickaxe and ask
questions?

Thanks for the input,

Vincent.
 
J

James Britt

Vincent said:
Hello everyone,

I am part of a Linux User Group in Quebec, and I would like to make a
presentation one day about Ruby. Since most people there are not
programmers, but mostly system administrators and that most of them
know nothing about scripting beyond piping a command into grep, I
thought it would be a nice opportunity to show them Ruby and how it can
help them in their everyday tasks.

Now, I would like to know, what sort of material I should cover for an
introduction? Is there already material out there that I could ues? I
will definitly need an introduction to Ruby, its syntax, etc. that is
as concise and clear as possible. My plan of the tutorial right now
would be something along the lines of:

Over how many days? You've listed quite a bit of material to present to
non-programmers.

You might do best to show enough about scripting in general, very
high-level, and some Ruby in particular, so as to generate interest in
further exploration.

James


--

http://www.ruby-doc.org - The Ruby Documentation Site
http://www.rubyxml.com - News, Articles, and Listings for Ruby & XML
http://www.rubystuff.com - The Ruby Store for Ruby Stuff
http://www.jamesbritt.com - Playing with Better Toys
 
B

Bill Guindon

=20
Over how many days? You've listed quite a bit of material to present to
non-programmers.
=20
You might do best to show enough about scripting in general, very
high-level, and some Ruby in particular, so as to generate interest in
further exploration.

I'm inclined to agree. You can get a good 'non-programmer' start here:
http://pine.fm/LearnToProgram/?Chapter=3DContents
James
=20
=20
--
=20
http://www.ruby-doc.org - The Ruby Documentation Site
http://www.rubyxml.com - News, Articles, and Listings for Ruby & XML
http://www.rubystuff.com - The Ruby Store for Ruby Stuff
http://www.jamesbritt.com - Playing with Better Toys
=20
=20

--=20
Bill Guindon (aka aGorilla)
 
A

Assaph Mehr

Hi Vincent,


Vincent said:
Hello everyone,

I am part of a Linux User Group in Quebec, and I would like to make a
presentation one day about Ruby. Since most people there are not
programmers, but mostly system administrators and that most of them
know nothing about scripting beyond piping a command into grep, I
thought it would be a nice opportunity to show them Ruby and how it can
help them in their everyday tasks.

Take a look at the WhyRuby wiki (http://whyruby.rubyforge.org) - it
contains a collection of presentations and links for advocating Ruby,
some of which may be useful for you.

HTH,
Assaph
 
V

Vincent Foley

I was thinking in a period of about two hours. Like I said, I want to
run this by the newsgroups in case someone has already done something
like that. I was also thinking of an all-example presentation, where
you explain the bits as you go along.
 
B

Brian Schröder

I was thinking in a period of about two hours. Like I said, I want to
run this by the newsgroups in case someone has already done something
like that. I was also thinking of an all-example presentation, where
you explain the bits as you go along.
=20
=20

I'd say it is impossible to do what you want to do in just two hours.
You need to deploy only some hooks, and hope that they will pick up.
Maybe some simple administration task automated with ruby in a
detailed step by step walkthrough.

I did a four days * fours hours course about ruby
http://ruby.brian-schroeder.de/course/ once and time is always in
short supply.

best regards,

Brian Schr=F6der


--=20
http://ruby.brian-schroeder.de/

Stringed instrument chords: http://chordlist.brian-schroeder.de/
 
R

Robert Klemme

Vincent said:
Hello everyone,

I am part of a Linux User Group in Quebec, and I would like to make a
presentation one day about Ruby. Since most people there are not
programmers, but mostly system administrators and that most of them
know nothing about scripting beyond piping a command into grep, I
thought it would be a nice opportunity to show them Ruby and how it
can help them in their everyday tasks.

Now, I would like to know, what sort of material I should cover for an
introduction? Is there already material out there that I could ues?
I will definitly need an introduction to Ruby, its syntax, etc. that
is as concise and clear as possible. My plan of the tutorial right
now would be something along the lines of:

- Running a Ruby program and using irb
- Basic classes (Integer, Array, String)
- Showing how to do input/output with gets and puts
- Showing how to do file and directory operations
- Conditionals and loops (probably limit it to if, while and for x in)
- Using regular expressions*
- Useful modules (Net::Http, Net::SSH, Net::FTP, anything else that
would be useful for sysadmin?)
- Have one or two practical scripts

* could be skipped if the rest is too long

How does that sound? Is there stuff I'm forgetting that I should
mention? Is it too long for just a first introduction? Or good
enough, and if they're interested, they can buy the Pickaxe and ask
questions?

Thanks for the input,

Vincent.

There are quite some tutorials out there - you can easily find them with
Ggl

http://www.math.umd.edu/~dcarrera/ruby/0.3/
http://pine.fm/LearnToProgram/
http://www.ruby.ch/tutorial/
http://www.ruby-doc.org/docs/ruby-doc-bundle/Tutorial/
http://ruby.brian-schroeder.de/course/

I guess you will find something usable there.

robert
 
C

Curt Hibbs

Brian said:
I'd say it is impossible to do what you want to do in just two hours.
You need to deploy only some hooks, and hope that they will pick up.
Maybe some simple administration task automated with ruby in a
detailed step by step walkthrough.

I did a four days * fours hours course about ruby
http://ruby.brian-schroeder.de/course/ once and time is always in
short supply.

You can also look at the preentations available in the WhyRuby repository:

http://rubyforge.org/docman/?group_id=251

Curt
 
V

Vincent Foley

Four days? We meet once a month, I doubt they'll remember something
between each meeting, so something over four months is definitly out,
it should be a one-session thing. I'll ask on the mailing list what
they would like to automize, see if Ruby can do that easily enough and
build material around that. I think the goal would be more to show how
easier and more powerful than bash scripting Ruby can be and give them
the desire to pursue that than to give a complete tutorial on Ruby.
 
B

Brian Schröder

Four days? We meet once a month, I doubt they'll remember something
between each meeting, so something over four months is definitly out,
it should be a one-session thing. I'll ask on the mailing list what
they would like to automize, see if Ruby can do that easily enough and
build material around that. I think the goal would be more to show how
easier and more powerful than bash scripting Ruby can be and give them
the desire to pursue that than to give a complete tutorial on Ruby.
=20
=20

That is exactly what I meant. ;-)

Good luck,

Brian


--=20
http://ruby.brian-schroeder.de/

Stringed instrument chords: http://chordlist.brian-schroeder.de/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,172
Messages
2,570,934
Members
47,477
Latest member
ColumbusMa

Latest Threads

Top