bilal-haider(25)•in #ruby•2910 days agoRuby Programming Tutorial - Lesson 31 - Doubly Linked listDoubly Linked list In previous article, we learned to create singly linked list, every node in singly linked list has in it the information of next node. but it...4011$1.09bilal-haider(25)•in ruby•2910 days agoRuby Programming Tutorial - Lesson 31 - Doubly Linked listDoubly Linked list In previous article, we learned to create singly linked list, every node in singly linked list has in it the information of next node. but it...4011$1.09
bilal-haider(25)•in #ruby•2910 days agoRuby Programming Tutorial - Lesson 30 - Implementing Linked Lists, simple blockchainSingly Linked List Linked lists is a data structure which is widely used across many applications, you can think of blockchain as a linked list too. Where each ...303$1.63bilal-haider(25)•in ruby•2910 days agoRuby Programming Tutorial - Lesson 30 - Implementing Linked Lists, simple blockchainSingly Linked List Linked lists is a data structure which is widely used across many applications, you can think of blockchain as a linked list too. Where each ...303$1.63
bilal-haider(25)•in #ruby•2911 days agoRuby Programming Tutorial - Lesson 29 - Handling Time and DatesTime In this article we are going to learn about a Class which ruby provides us, that is used to handle times. Almost every ruby program needs to use Time. If y...424$0.20bilal-haider(25)•in ruby•2911 days agoRuby Programming Tutorial - Lesson 29 - Handling Time and DatesTime In this article we are going to learn about a Class which ruby provides us, that is used to handle times. Almost every ruby program needs to use Time. If y...424$0.20
bilal-haider(25)•in #ruby•2912 days agoRuby Programming Tutorial - Lesson 28 - Hashes in RubyHashes A Hash is a dictionary-like collection of unique keys and their values. Also called associative arrays, they are similar to Arrays, but where an Array us...296$1.97bilal-haider(25)•in ruby•2912 days agoRuby Programming Tutorial - Lesson 28 - Hashes in RubyHashes A Hash is a dictionary-like collection of unique keys and their values. Also called associative arrays, they are similar to Arrays, but where an Array us...296$1.97
bilal-haider(25)•in #ruby•2925 days 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...225$1.33bilal-haider(25)•in ruby•2925 days 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...225$1.33
bilal-haider(25)•in #ruby•2926 days 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 ...263$1.66bilal-haider(25)•in ruby•2926 days 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 ...263$1.66
bilal-haider(25)•in #ruby•2928 days 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 i...242$1.34bilal-haider(25)•in ruby•2928 days 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 i...242$1.34
bilal-haider(25)•in #introduction•2929 days 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 dis...2011$0.42bilal-haider(25)•in introduction•2929 days 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 dis...2011$0.42
bilal-haider(25)•in #ruby•2930 days 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...214$2.36bilal-haider(25)•in ruby•2930 days 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...214$2.36
bilal-haider(25)•in #ruby•2932 days 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 mult...223$3.79bilal-haider(25)•in ruby•2932 days 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 mult...223$3.79
bilal-haider(25)•in #syria•2932 days agoHumanity is Ashamed!! #SaveSyria :( lets pray for innocentsHey friends, I know this account is about Ruby programming, But this incident made me cry very badly. Because of civil war .. innocent People in Syria are being...3510$0.00bilal-haider(25)•in syria•2932 days agoHumanity is Ashamed!! #SaveSyria :( lets pray for innocentsHey friends, I know this account is about Ruby programming, But this incident made me cry very badly. Because of civil war .. innocent People in Syria are being...3510$0.00
bilal-haider(25)•in #ruby•2932 days 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 .. f...1270$0.03bilal-haider(25)•in ruby•2932 days 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 .. f...1270$0.03
bilal-haider(25)•in #ruby•2933 days 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...160$2.03bilal-haider(25)•in ruby•2933 days 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...160$2.03
bilal-haider(25)•in #ruby•2934 days agoRuby Programming Tutorial - Lesson 05 - Comparison operators :) lets compare valueslets recap a little bit, what have we learnt so far? 1. Different Datatypes, Numbers, texts, booleans 2. Holding values of different datatypes inside of variabl...396$1.90bilal-haider(25)•in ruby•2934 days agoRuby Programming Tutorial - Lesson 05 - Comparison operators :) lets compare valueslets recap a little bit, what have we learnt so far? 1. Different Datatypes, Numbers, texts, booleans 2. Holding values of different datatypes inside of variabl...396$1.90
bilal-haider(25)•in #ruby•2936 days agoRuby Programming Tutorial - Lesson 04 -Logical OperatorsLogical Operators In previous article, I wrote about arithmetic operators.. in this article I will give you a list of logical operators that you will be using l...304$2.02bilal-haider(25)•in ruby•2936 days agoRuby Programming Tutorial - Lesson 04 -Logical OperatorsLogical Operators In previous article, I wrote about arithmetic operators.. in this article I will give you a list of logical operators that you will be using l...304$2.02
bilal-haider(25)•in #programming•2943 days agoWant to make ruby programming tutorialsHey, I want to do what i love to do .. that is programming, I want to make ruby programming tutorials. both videos and text. only if i can get 1000 upvotes on t...5737$0.03bilal-haider(25)•in programming•2943 days agoWant to make ruby programming tutorialsHey, I want to do what i love to do .. that is programming, I want to make ruby programming tutorials. both videos and text. only if i can get 1000 upvotes on t...5737$0.03
ronaldmcatee(25)•in #bitcoin•2952 days ago50k USD Bitcoin ====> december 2018Cryptocurrencies could go on a bull run greater than last year and pass the trillion-dollar mark in terms of value, experts told CNBC, following a recent violen...36$0.00ronaldmcatee(25)•in bitcoin•2952 days ago50k USD Bitcoin ====> december 2018Cryptocurrencies could go on a bull run greater than last year and pass the trillion-dollar mark in terms of value, experts told CNBC, following a recent violen...36$0.00
ronaldmcatee(25)•in #wild•3044 days agoLion Attacked a man ===> in Cage, Never trust wild animalshttps://youtu.be/4uQcP1Pc10...206$0.00ronaldmcatee(25)•in wild•3044 days agoLion Attacked a man ===> in Cage, Never trust wild animalshttps://youtu.be/4uQcP1Pc10...206$0.00
ronaldmcatee(25)•in #nature•3055 days agoBeauty of Pakistan - Skardu =======> Snow all around. mountain.I bet you have never seen nature at this level of beauty This is unbelievable. https://www.youtube.com/watch?v=GFMIiRrTPCo...143$0.00ronaldmcatee(25)•in nature•3055 days agoBeauty of Pakistan - Skardu =======> Snow all around. mountain.I bet you have never seen nature at this level of beauty This is unbelievable. https://www.youtube.com/watch?v=GFMIiRrTPCo...143$0.00
ronaldmcatee(25)•in #witness•3071 days agoError When Pushing block ======> This Error Sucks!!Recently I have been trying to run a steem node. waiting for it to sync for about a month failed twice. and now getting this error. someone in my friends who is...112$0.00ronaldmcatee(25)•in witness•3071 days agoError When Pushing block ======> This Error Sucks!!Recently I have been trying to run a steem node. waiting for it to sync for about a month failed twice. and now getting this error. someone in my friends who is...112$0.00