Observer Patterns
Play
15:04 CC

Observer Patterns

#141 Jul 8, 2018 pro
The Observer pattern (also known as publish/subscribe) provides a simple mechanism for one object to inform a set of interested third-party objects when its state changes.

Using GitLab Runner for CI/CD
Play
14:20 CC

Using GitLab Runner for CI/CD

#135 May 27, 2018 pro
GitLab is a great version control software which has options to either self host or or use their hosted solution. In this episode, we look at using the GitLab Runner to run our Continuous Integration and Continuous Deployment.

Ruby Go Lang Extensions
Play
9:51 CC

Ruby Go Lang Extensions

#134 May 20, 2018 pro
Let's face it, Ruby is slow , but don't abandon Ruby just yet. Using extensions, we can write performant code in another language for the specific slow functions while the rest of the application remains untouched.

Web Interactions with Mechanize
Play
13:37 CC

Web Interactions with Mechanize

#131 Apr 29, 2018 pro
The Mechanize library is used for automating interaction with websites. Mechanize automatically stores and sends cookies, follows redirects, and can follow links and submit forms. Form fields can be populated and submitted.

Ruby Objects and Memoization
Play
21:55 CC

Ruby Objects and Memoization

#120 Feb 18, 2018 pro
In this episode, we look at creating ruby objects. Then we look at different ways of implementing memoization and how it can be used to speed up our classes.