New: rubyprogrammingAll contenthive-129948hive-196917krzzanhive-183959hive-185836steemhive-180932hive-150122photographyhive-101145hive-183397hive-144064uncommonlabhive-184714hive-188619krsuccessbitcoinhive-193637hive-103599hive-193186hive-145157hive-179660hive-180301hive-180106TrendingNewHotLikersbilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 11 Videobilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 10 Videobilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 9 Videobilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 8 Videobilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 7 Videobilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 6 Videobilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 5 Videobilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 4 Videobilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 3 Videobilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 2 Videobilal-haider (58)in ruby • 6 years agoRuby Programming for Beginners ==> Part 1 Videobilal-haider (58)in ruby • 7 years agoRuby Programming Tutorial - Lesson 13 - Arrays and use of loops with arraysIntroduction An array is a data structure that represents a list of values, called elements. Arrays let you store multiple values in a single variable. This can condense and organize your code…bilal-haider (58)in ruby • 7 years agoRuby Programming Tutorial - Lesson 12 - Loops in Ruby :: EACH LoopEach loop, in other languages its also called For-each loop Its also used to iterate through values.. Lets take an example to learn more about it, # Each loop is used to do something repeatedly bilal-haider (58)in ruby • 7 years agoRuby Programming Tutorial - Lesson 11 - Loops in Ruby :: For...in LoopFor...in loop In this article, we are going to learn about "For" loop its well known loop, and used in almost every programming language. Here is how it works in Ruby # For loop is used to do…bilal-haider (58)in introduction • 7 years agoRuby Programming Tutorial - Lesson 10 - Loops in Ruby :: Until LoopThis article .. We are going to learn about Until loop. Sell burgers, each burger you sell you earn 1$ ... reach your 100$ target once you reach your target display a message .. of target…bilal-haider (58)in ruby • 7 years agoRuby Programming Tutorial - Lesson 09 - Loops in Ruby :: While LoopWhile Loop Loops are used to do something repeatedly .. e.g Get all the users data .. and display it ... Loops can also be endless .. where you constantly check for something ... e.g Look at…steemit.eropa (25)in ruby • 7 years agosteemCreated with Sketch.Master Ruby in 20 minutesIntroduction This Ruby mini tutorial should be completed in less than 20 minutes. Assuming you have Ruby installed. (If you have not installed Ruby on your computer yet, download and install Ruby…bilal-haider (58)in ruby • 7 years agoRuby Programming Tutorial - Lesson 08 - Case StatementsIn last article we learned about how can we write conditional statements, when we have multiple cases using IF - ELSIF We also have an alternative to check multiple cases. Lets take an example…bilal-haider (58)in ruby • 7 years agoRuby Programming Tutorial - Lesson 07 - More on Conditional StatementsNested IF conditions We are going to learn more about conditional statements in this post. Nested if conditions means .. if conditions within if conditions .. for example ## Checking for a…bilal-haider (58)in ruby • 7 years agoRuby Programming Tutorial - Lesson 06 - Conditional Statements && logical decisionsConditional Statements Human beings have this ability to compare different things and make decisions based upon what they think is best. So lets say if I get an offer of 1500$/month job when I am…