How to Use Stacks in Ruby to Solve Problems

If you don’t have a CS (Computer Science) degree you might feel like you are missing out on something… Or you may feel like CS is too abstract to be useful… Or that Ruby already does all the hard work for you… Either way… It’s helpful to understand the basics of data structures like hashes, … Read more

15 Weird Things About Ruby That You Should Know

15 Weird Things About Ruby That You Should KnowBy Jesus CastelloRuby is an amazing language with a lot of interesting details that you may not have seen before……in this post I compiled some of those details for your own enjoyment in a nice-looking list :)​ 1 Heredoc + Method If you have some data that you … Read more

Hash Tables Explained

One of my favorite data structures is the hash table because it’s simple & powerful. You probably have used it before since it’s an efficient way to store key-value pairs. There are some interesting computer science concepts behind the implementation of a hash table that are worth studying, and that’s exactly what we are going … Read more