Articles | Ryan Vergara - FullStack Developer

Articles

How Five Weeks of Remote Pair Programming Helped me Build Strong Habits

Thanks to the Internet, opportunities that used to be limited by geography now are available to everyone. However, it also means learning how to work with others in a different part of the world. Cultural differences, at times language barriers, and even attitude clashes can break team members working remotely with each other. Read more from Hackernoon Medium Publication

How Much HTML and CSS Should You Know To Be A Complete Developer?

These days we are blessed to have tools, libraries and frameworks to make it simpler and easier for us to build the markup and styles of a site. It was previously tough to perfect a page’s layout using purely floats and position properties in CSS. But now we have FlexBox and CSS Grid. Having basic skills in those two will already allow one to make incredible looking web pages. Read more from Hackernoon Medium Publication

How to calculate a Binary Tree’s height using array iteration in Ruby

If you observe the directories or file structure in your computer, it follows a (albeit the more general) tree structure. Each folder can contain files (the data) and a number of other directories (which are not necessarily data in themselves but rather just addresses of such data contained within those sub directories). Read more from FreeCodeCamp News

How to calculate Binary Tree height with the recursive method

Previously I wrote about an algorithm for finding out the height of a binary tree using iteration. Though that method gets the job done (in 7 steps no less), the same can be accomplished in a much simpler way. In my opinion, one of the most powerful programming techniques is recursion. For readers new to programming — it is simply a function or method calling itself. Read more from FreeCodeCamp News