Oreilly - Learn to Code with Ruby
by Boris Paskhaver | Released November 2017 | ISBN: 9781788834063
A comprehensive introduction to coding with the Ruby programming language. Complete beginners welcome!About This VideoInstallation and configuration for both Mac OS and Windows systemsCommon programming concepts (variables, arithmetic, output)Objects and methods, Strings, Numbers, Booleans, Methods and ConditionalsRanges, Arrays, Hashes, Blocks, Procs, and LambdasDates and times, File Input and Output, Regular ExpressionClasses, Modules, and InheritanceIn DetailThe most comprehensive Ruby course available. An in-depth overview of coding with Ruby, a popular programming language renowned for its simplicity and elegance. Whether you've never written a line of code before or are looking to learn a brand new language, this course covers all bases! Ruby is a language released by Yukihiro Matsumoto in 1995 that bills itself as "a programmer's best friend". Every aspect of Ruby is designed to make programming easier for the developer. There is no better first language if you're interested in learning how to program.Ruby also serves as the foundation for Ruby on Rails, a popular web framework that powers over 1.2 million websites worldwide. The course offers an extensive introduction to the base language you'll need to know if you intend to tackle web development in the future. Check out the sample videos below to get a taste of what the course has to offer! So if you're ready to commit yourself, if you're eager to expand your knowledge of programming, if you're ready to discover what makes this elegant language so loved by developers, you are ready to Learn to Code with Ruby!Thanks for checking out the course! Show and hide more Publisher resources Download Example Code
- Chapter 1 : Introduction and Installation
- Introduction to Ruby 00:13:07
- Mac OS - Access and Work with the Terminal 00:10:30
- Mac OS - Install RVM and Install Ruby 00:18:02
- Mac OS - Install Atom Text Editor and Atom Runner and Custom Theme 00:09:42
- Mac OS - Write First Ruby File and Run with Atom Runner 00:09:35
- Mac OS - Run Ruby File from Terminal 00:06:08
- Windows - Download and Install Ruby 00:07:13
- Windows - Install Atom Text Editor and Atom Runner and Custom Theme 00:09:36
- Windows - Write First Ruby File and Run with Atom Runner 00:07:28
- Windows - Run Ruby File from Command Promp 00:05:09
- Interactive Ruby (IRB) 00:07:27
- Chapter 2 : Getting Started
- The puts Method 00:10:20
- The print Method 00:03:18
- The p Method 00:04:34
- Basic Arithmetic in Ruby 00:09:58
- Comments 00:06:34
- Variables 00:13:39
- Parallel Variable Assignment and Swapping Variable Values 00:06:52
- Constants 00:04:02
- Intro to Object Methods 00:08:08
- Return Values and the nil Object 00:09:14
- String Interpolation 00:10:25
- The gets Method and the chomp Method 00:15:25
- Chapter 3 : Numbers and Booleans
- Intro to Numbers and the .class Method 00:07:49
- Convert Numbers to Strings and Vice Versa 00:08:34
- Intro to Booleans 00:04:51
- The .odd? and .even? Predicate Methods 00:05:49
- Comparison with the Equality (==) Operator 00:06:42
- Comparison with the Inequality (!=) Operator 00:04:34
- Less than and Greater than Operators 00:05:16
- Arithmetic Methods and Basic Arguments 00:09:08
- Intro to Object Methods with Parameters (The .between? Predicate Method) 00:08:22
- Float Methods 00:06:48
- Assignment Operators 00:07:54
- Introduction to Blocks with the .times Method 00:14:33
- The .upto and .downto Methods 00:09:43
- BONUS - The .step Method 00:07:39
- Chapter 4 : Strings I
- Create a String 00:07:25
- Multiline Strings 00:04:02
- Escape Characters 00:08:04
- Single Quotes vs Double Quotes 00:02:21
- Equality and Inequality Operators with Strings 00:07:13
- Concatenate Strings 00:07:45
- The .length and .size Methods 00:06:03
- Extract Single Characters from String with Bracket Syntax 00:07:45
- Extract Multiple Characters from String with Bracket Syntax 00:04:10
- Extract Multiple Characters with Range Objects 00:05:54
- Overwrite Characters in String with Bracket Syntax 00:05:14
- Case Methods 00:05:44
- The .reverse Method on a String 00:03:11
- Bang Methods on Strings 00:07:20
- The .include? Method on a String 00:05:32
- The .empty? And .nil? Methods on a String 00:04:01
- Chapter 5 : Methods and Conditionals I
- Intro to Methods 00:12:58
- Local Variables 00:04:16
- Parameters and Arguments 00:09:17
- Return Values I 00:07:23
- Return Values II - Default Return Values and the Return of the puts Method 00:06:15
- The if Statement 00:10:19
- Truthiness and Falseness 00:07:06
- if elsif 00:09:02
- The else Keyword 00:08:01
- Multiple Conditions with && Operator 00:12:48
- Multiple Conditions with || Operator 00:05:10
- Parentheses and Precedence 00:08:33
- Nested if Statements 00:08:04
- The .respond_to? Method 00:09:30
- Ternary Operator 00:12:36
- Default or Optional Parameters 00:06:25
- Call A Method from Another Method or Interpolated String 00:10:36
- Chapter 6 : Methods and Conditionals II
- The case Statement 00:12:04
- Negation with ! 00:06:09
- The unless Keyword 00:07:45
- The while Keyword 00:15:38
- The until Keyword 00:04:21
- CHALLENGE: FizzBuzz 00:11:57
- Statement Modifiers / Inline Modifiers 00:05:36
- Conditional Assignment 00:06:34
- Chapter 7 : Ranges
- Intro to Ranges 00:07:46
- Alphabetical Ranges 00:05:37
- The .size Method on a Range 00:01:45
- Check if Value Exists in a Range with .includes? Method or === 00:04:25
- Generate A Random Number with the rand Method 00:05:58
- Chapter 8 : Arrays I - Creation, Addition, and Modification
- Introduction to Arrays 00:04:00
- Create An Array with Bracket Syntax 00:09:18
- Shorthand %w Syntax to Create an Array of Strings 00:02:11
- Create an Array with Array.new Method 00:03:32
- Access Single Array Element by Index Position 00:11:58
- Access Single Array Element with .fetch Method 00:04:09
- Extract Sequential Array Elements with Bracket Syntax 00:06:12
- Access Sequential Array Elements with a Range Object 00:04:01
- Access Multiple Array Elements with the .values_at Method 00:05:01
- The .slice Method 00:02:33
- Overwrite One or More Array Elements 00:08:06
- The .length, .size and .count Methods on an Array 00:04:57
- The .empty? and .nil? Methods on an Array 00:05:18
- The .first and .last Methods 00:11:12
- The .push Method, the Shovel Operator, and the .insert Method 00:07:04
- The .pop Method 00:05:15
- The .shift and .unshift Methods 00:03:16
- Equality and Inequality Operators with Arrays 00:05:06
- The Spaceship Operator 00:06:15
- Convert Ranges to Arrays with the .to_a Method 00:04:19
- The .is_a? Predicate Method 00:12:46
- Chapter 9 : Arrays II - Iteration and Various Methods
- The ri Program 00:07:49
- Review of Blocks 00:05:20
- The .each Method on an Array 00:07:00
- More Practice with the .each Method 00:13:00
- Each within each 00:04:03
- The For Loop 00:09:31
- The .each_with_index Method 00:06:35
- CHALLENGE: The .each_with_index Method 00:07:02
- The .map and .collect Methods on an Array 00:12:14
- Iteration over Array with while or until Loops 00:05:35
- The break Keyword 00:06:20
- The next Keyword 00:03:38
- The .reverse Method on an Array 00:02:25
- The .sort Method on an Array 00:05:18
- The .concat Method on an Array 00:04:46
- The .max and .min Methods on an Array 00:09:06
- The .include? Predicate Method on an Array 00:02:12
- The .index and .find_index Methods on an Array 00:02:51
- The .select Method on an Array 00:06:45
- The .reject Method on an Array 00:02:53
- Unpack a Multidimensional Array 00:05:45
- The .partition Method on an Array 00:05:05
- Chapter 10 : Strings II
- The .split Method on a String 00:05:28
- Iterate over String Characters 00:04:40
- The .join Method on an Array 00:10:31
- The .count Method on a String 00:06:44
- The .index and .rindex Methods on a String 00:12:37
- The .insert Method on a String 00:02:30
- The .squeeze Method 00:11:22
- The .clear Method on a String 00:01:26
- The .delete Method on a String 00:05:36
- Chapter 11 : Arrays III - Bonus Methods
- Object Pointers and Object Copies 00:10:30
- Splat Arguments 00:03:50
- The .any? And .all? Methods on an Array 00:04:26
- The .find and .detect Methods on an Array 00:05:42
- The .uniq Method on an Array 00:05:29
- The .compact Method on an Array 00:04:43
- The .inject and .reduce Methods on an Array 00:11:52
- The .flatten Method on an Array 00:03:48
- The .zip Method on an Array 00:07:04
- The .sample Method on an Array 00:03:50
- Multiply an Array with Asterisk Symbol 00:05:59
- Union - Combine Arrays and Exclude Duplicates 00:06:33
- Remove Array Items that Exist in another Array 00:05:52
- Array Intersection with the Ampersand Symbol 00:06:06
- Chapter 12 : Hashes I
- Intro to Hashes 00:07:08
- Create Hash and Extract Values from Hashes by their Keys 00:09:54
- Intro to Symbols and Symbols as Hash Keys 00:08:17
- Convert Symbols to Strings and Vice Versa 00:03:51
- The .fetch Method on a Hash 00:05:01
- Add a Key Value Pair to a Hash with Bracket Syntax or the .store Method 00:05:02
- The .length and .empty? Methods on a Hash 00:03:21
- The .each Method on a Hash 00:07:18
- The .each_key and .each_value Methods 00:07:17
- Retrieve Keys or Values from Hash as an Array 00:02:12
- Chapter 13 : Hashes II
- Create Hash with Default Value 00:05:37
- Convert Hash to Array and Vice Versa 00:05:12
- The .sort and .sort_by Methods on a Hash 00:06:45
- The .key? And .value? Methods on a Hash 00:04:34
- Hashes as Method Arguments 00:10:20
- The .delete Method on a Hash 00:03:09
- The .select and .reject Methods on a Hash 00:06:47
- The .merge Method to Combine Hashes 00:07:59
- CHALLENGE: Word Frequency in a Sentence String 00:09:29
- Chapter 14 : Blocks, Procs, and Lambdas
- Introduction to Blocks 00:07:50
- The yield Keyword 00:09:55
- Procs I 00:17:26
- The .block_given? Method 00:03:28
- Yielding with Arguments 00:08:37
- A Custom .each Method 00:08:53
- Procs II 00:04:15
- Pass a Ruby Method as Proc 00:05:53
- Methods with Proc Parameters 00:06:35
- Intro to Lambdas 00:12:52
- Lambda Efficiency Example 00:13:12
- Chapter 15 : The Time Object
- Intro to the Time Object 00:06:46
- Instance Methods on a Time Object 00:04:22
- Predicate Methods on Time Objects 00:04:32
- Add or Subtract Time by Seconds 00:08:58
- The Comparable Methods on a Time Object 00:06:21
- Convert Time Object to Other Objects 00:05:02
- Convert Time Object to Formatted String 00:05:32
- The .parse and .strptime Methods 00:07:40
- Chapter 16 : File Input and Output
- Read from a Text File with Ruby 00:04:18
- Write to a Text File with Ruby 00:04:48
- Rename and Delete a File with Ruby 00:03:39
- Command Line Arguments (ARGV) 00:03:41
- The load Method 00:04:53
- The require and require_relative Methods 00:07:35
- Chapter 17 : Regular Expressions
- The .start_with? and .end_with? Methods 00:15:54
- The .include? Method 00:10:32
- Intro to Regular Expressions 00:10:16
- The .scan Method I 00:06:27
- The .scan Method II 00:06:18
- The Wildcard Symbol 00:06:29
- The Backslash 00:05:32
- RegEx Anchors 00:04:07
- Exclude Characters 00:04:39
- The .sub and .gsub Methods with Regular Expressions 00:09:59
- Rubular.com 00:07:20
- Chapter 18 : Classes I
- Intro to Classes 00:11:24
- Review of the .class Method on Ruby Objects 00:02:54
- The .superclass and .ancestors Methods on a Class 00:14:32
- The .methods Method 00:08:27
- Create A Class 00:12:07
- Object Aliases 00:05:14
- Instance Variables and the .initialize Method 00:13:34
- Instance Methods 00:10:04
- Override the .to_s Method 00:05:42
- The self-Keyword in an Instance Method 00:05:44
- Getter Methods 00:10:35
- Setter Methods 00:10:54
- Shortcut Accessor Methods 00:08:36
- Add Parameters to initialize Method 00:07:58
- Chapter 19 : Modules and Mixins
- Intro to Modules 00:10:35
- Modules with Identical Methods 00:08:08
- Import Modules into the Current File 00:03:42
- The Math Module 00:02:52
- Mixins I - The Comparable Module 00:18:03
- Mixins II - Custom Mixins 00:15:24
- The .ancestors Method in Depth 00:09:55
- The prepend Keyword 00:04:12
- The extend Keyword 00:04:54
- Mixins III - The Enumerable Module 00:14:51
- Chapter 20 : Classes II
- Private Methods 00:10:28
- Protected Methods 00:11:40
- Add Validation to Setter Methods 00:09:39
- Prefer Instance Methods to Instance Variables 00:10:41
- Calling Multiple Setter Methods within one Method 00:07:56
- Structs 00:12:16
- Monkey Patching I 00:13:04
- Monkey Patching II 00:15:10
- Monkey Patching III 00:06:04
- Class Variables and Class Methods 00:14:26
- Chapter 21 : Classes III
- Review of Inheritance 00:04:02
- Create Subclasses 00:06:21
- Check Inheritance Hierarchy 00:06:54
- The .is_a? and .instance_of? Predicate Methods 00:05:22
- Exclusive Instance Methods in Subclasses 00:05:22
- Override Methods in a Subclass 00:04:52
- The super Keyword I 00:10:29
- The super Keyword II 00:08:00
- Class Variables across Subclasses 00:07:53
- Singleton Classes and Singleton Methods 00:08:29
- Hash as initialize Argument I 00:07:07
- Hash as initialize Argument II 00:09:08
- Chapter 22 : Reading and Writing Documentation
- Intro to Rubydoc Documentation 00:05:45
- Class Method Documentation on RubyDocs 00:05:18
- Use rdoc to Generate Your Own Documentation I 00:08:27
- Use rdoc to Generate Your Own Documentation II 00:05:47
- Chapter 23 : Conclusion
Show and hide more 9781788834063.learn.to.code.OR.part1.rar
9781788834063.learn.to.code.OR.part2.rar
9781788834063.learn.to.code.OR.part3.rar
9781788834063.learn.to.code.OR.part4.rar