Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env ruby
dirs_and_functions = {
"/home/tom/software/twin_engine/lsi_streaming" => {
"start" => -> {
`docker-stopall`
`sudo systemctl start postgresql`
`sudo systemctl start docker`
`docker-stopall`
`docker-compose start`
class Child
attr_accessor :age
def initialize(age: nil)
@age = age
end
end