Specialize in architecture and DX. Write primarily Ruby. VPE at Helios (FinTech). You know me as @hakunin on Twitter/X.
do_specific_thing
most of the time you should:
1) def do_generic_thing(options)
and then
2) def do_specific_thing; do_generic_thing(CONFIG_FOR_SPECIFIC_THING) end
do_specific_thing
most of the time you should:
1) def do_generic_thing(options)
and then
2) def do_specific_thing; do_generic_thing(CONFIG_FOR_SPECIFIC_THING) end