Slide 1

Slide 1 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Introduction to Ruby Prathamesh Sonpatki 1st March 2012 6 PM VIT Active Linux Users Prathamesh Sonpatki Introduction to Ruby

Slide 2

Slide 2 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions 1 Introduction To Ruby What is Ruby ? Hello world Calculator Prathamesh Sonpatki Introduction to Ruby

Slide 3

Slide 3 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions 1 Introduction To Ruby What is Ruby ? Hello world Calculator 2 Dive Into Ruby Object Oriented Ruby Altering Classes Prathamesh Sonpatki Introduction to Ruby

Slide 4

Slide 4 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions 1 Introduction To Ruby What is Ruby ? Hello world Calculator 2 Dive Into Ruby Object Oriented Ruby Altering Classes 3 Examples Codechef Download Manager Prathamesh Sonpatki Introduction to Ruby

Slide 5

Slide 5 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions 1 Introduction To Ruby What is Ruby ? Hello world Calculator 2 Dive Into Ruby Object Oriented Ruby Altering Classes 3 Examples Codechef Download Manager 4 Questions Prathamesh Sonpatki Introduction to Ruby

Slide 6

Slide 6 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions What is Ruby ? Hello world Prathamesh Sonpatki Introduction to Ruby

Slide 7

Slide 7 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions What is Ruby ? Hello world Ruby is Dynamic Language Prathamesh Sonpatki Introduction to Ruby

Slide 8

Slide 8 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions What is Ruby ? Hello world Ruby is Dynamic Language Pure Object Oriented Prathamesh Sonpatki Introduction to Ruby

Slide 9

Slide 9 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions What is Ruby ? Hello world Ruby is Dynamic Language Pure Object Oriented Open Source Prathamesh Sonpatki Introduction to Ruby

Slide 10

Slide 10 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions What is Ruby ? Hello world Ruby is Dynamic Language Pure Object Oriented Open Source Focus on Simplicity and Productivity Prathamesh Sonpatki Introduction to Ruby

Slide 11

Slide 11 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions What is Ruby ? Hello world Ruby is Dynamic Language Pure Object Oriented Open Source Focus on Simplicity and Productivity Elegant Syntax Ruby is simple in appearance, but is very complex inside, just like our human body

Slide 12

Slide 12 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions What is Ruby ? Hello world Ruby is Dynamic Language Pure Object Oriented Open Source Focus on Simplicity and Productivity Elegant Syntax Ruby is simple in appearance, but is very complex inside, just like our human body Prathamesh Sonpatki Introduction to Ruby

Slide 13

Slide 13 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions What is Ruby ? Hello world Listing 1: Simple Ruby Snippets chaitanya@oneric:˜>> irb 1.9.3 −p0 :001 > puts ” Hello , World” Hello , World => nil 1.9.3 −p0 :002 > Prathamesh Sonpatki Introduction to Ruby

Slide 14

Slide 14 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions What is Ruby ? Hello world Prathamesh Sonpatki Introduction to Ruby

Slide 15

Slide 15 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Object Oriented Ruby Listing 2: Simple Ruby Snippets 1.9.3 −p0 :002 > 1 + 2 => 3 1.9.3 −p0 :003 > 2 ∗ 4 => 8 1.9.3 −p0 :004 > 2 ∗∗ 5 => 32 1.9.3 −p0 :005 > 6 / 2 => 3 1.9.3 −p0 :006 > 7 % 4 => 3 1.9.3 −p0 :007 > 1.2 /3 => 0.39999999999999997 1.9.3 −p0 :008 > Prathamesh Sonpatki Introduction to Ruby

Slide 16

Slide 16 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Object Oriented Ruby Prathamesh Sonpatki Introduction to Ruby

Slide 17

Slide 17 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Object Oriented Ruby Name Any Object Oriented Languages That You Know :) Prathamesh Sonpatki Introduction to Ruby

Slide 18

Slide 18 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Object Oriented Ruby Name Any Object Oriented Languages That You Know :) Everything is Object in Ruby Prathamesh Sonpatki Introduction to Ruby

Slide 19

Slide 19 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Object Oriented Ruby Name Any Object Oriented Languages That You Know :) Everything is Object in Ruby Integers Floats all are Objects Prathamesh Sonpatki Introduction to Ruby

Slide 20

Slide 20 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Object Oriented Ruby Name Any Object Oriented Languages That You Know :) Everything is Object in Ruby Integers Floats all are Objects Even nil is Object Prathamesh Sonpatki Introduction to Ruby

Slide 21

Slide 21 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Codechef Download Manager Classes are not CLOSED in Ruby Listing 3: Simple Ruby Snippets 1.9.3 −p0 :013 > class String 1.9.3 −p0 :014?> def g e t s i z e 1.9.3 −p0 :015?> length 1.9.3 −p0 :016?> end 1.9.3 −p0 :017?> 1.9.3 −p0 :018 > def length 1.9.3 −p0 :019?> 10 1.9.3 −p0 :020?> end 1.9.3 −p0 :021?> end => nil 1.9.3 −p0 :022 > ”a” . g e t s i z e => 10 Prathamesh Sonpatki Introduction to Ruby

Slide 22

Slide 22 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Codechef Download Manager Let’s See Some examples of problems from www.codechef.com which i solved using Ruby Prathamesh Sonpatki Introduction to Ruby

Slide 23

Slide 23 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Codechef Download Manager Download Script for To Download Videos from www.railscasts.com // https://github.com/ReverseBitCoders/fifRC Prathamesh Sonpatki Introduction to Ruby

Slide 24

Slide 24 text

Outline Introduction To Ruby Dive Into Ruby Examples Questions Questions? This presentation is made using latex-beamer It is available at https://github.com/prathamesh-sonpatki/talks Prathamesh Sonpatki Introduction to Ruby