Ruby

Why I Avoid Ruby for New …

Why I Avoid Ruby for New Projects

  1. Azure SDK for Ruby is archived: https://github.com/Azure/azure-sdk-for-ruby
  2. PayPal deleted their Ruby SDK and started another one that only contains 3 of PayPal’s API endpoints at the time of writing: https://github.com/paypal/PayPal-Ruby-Server-SDK
  3. Azure …

Ruby Parameter Passing: A …

Ruby Variables: A Quick Reference

This is meant to be a quick reference to bookmark if you don’t work on Ruby code all that often, it’s not meant to be a deep dive into the language

Passing Values into Functions

There are several ways to pass values into functions.

Regular Parameter …

Linked Lists Compared

Linked Lists Functional, Procedural, and Object Oriented; Part 1

A picture of Linked Lists on a chalkboard

Over the last 2 weeks, I’ve been building a singly linked list implementation from scratch in Haskell, Ruby, and C. I originally did it just to become a little bit more sharp in these languages, but what I found was really …