A Game of Thrones: LCG
Determines Best Sets to Buy Based on Meta Analysis Apr 23 2019
Determines Best Sets to Buy Based on Meta Analysis Apr 23 2019
Why You and Your Team Should Consider Ruby on Rails Mar 6 2019
A Developer's Guide to New Projects Mar 4 2019
Streaming Audio in 3D for MMO Games Aug 27 2018
In this live-coding session I work on an Elixir server built to support huge numbers of users chatting in 3d.
In these sessions we build a supervision tree based on the following architecture:
more»And What It Means for Your Engineering Team Aug 6 2018
Ruby configuration management Oct 10 2016
FlexibleConfig promotes good OOP design, and the separation of logic and configuration in your Ruby classes.
FlexibleConfig allows you to set class constants cleanly in ruby with the heirarchical structure and clean workflow of YML config, without sacrificing the flexibility and immediacy of ENVironment variables.
more»The Cost of Moving Slowly May 19 2016
Live coding playlist: building a Ruby API testing and documentation tool Jun 28 2015
RSpec shorthand for describing individual methods Dec 21 2013
RSpec Describe Method is a ruby gem that provides a shorthand for testing specific methods of classes.
It supports both instance methods and class methods, with or without arguments.
more»Rails models powered by static files Jun 23 2013
ActiveHash is a simple base class that allows you to use a ruby hash as a readonly datasource for an ActiveRecord-like model.
ActiveHash assumes that every hash has an :id key, which is what you would probably store in a database. This allows you to seamlessly upgrade from ActiveHash objects to full ActiveRecord objects without having to change any code in your app, or any foreign keys in your database.
It also allows you to use #has_many and #belongs_to (via belongs_to_active_hash) in your AR objects.
ActiveHash can also be useful to create simple test classes that run without a database - ideal for testing plugins or gems that rely on simple AR behavior, but don’t want to deal with databases or migrations for the spec suite.
more»