Skip to content

Instantly share code, notes, and snippets.

View lukestadtler's full-sized avatar

Luke Stadtler lukestadtler

View GitHub Profile
@lukestadtler
lukestadtler / keybase.md
Created January 13, 2023 22:00
Keybase proof

Keybase proof

I hereby claim:

  • I am lukestadtler on github.
  • I am lukestadtler (https://keybase.io/lukestadtler) on keybase.
  • I have a public key ASBjjJ7gFkxRWkbuqUAKp5DT4LS1jvDpr8_ldNRc4fr2mwo

To claim this, I am signing this object:

@lukestadtler
lukestadtler / turbinerb_comments.rb
Last active December 2, 2022 18:43
Random thoughts on the TurbineRb implementation.
TurbineRb.configure do |config|
# this pattern allows for setup of other configuration as they becomes available, beyond providing a register method.
config.max_turbines = 20
config.max_blades_per_turbine = 3
# Provide a Turbine-able class to TurbineRb, when needed it can initialize internally with app_class.new.
# Alternatively, does MyApp need to be initialized at all? It seems that call could/should be a class-level method
# that purely operates on app.
# If it needs to be an instance we can simply pass MyApp.new into register instead.