I would like a Hash method that does the following: ````ruby a = {a: 1, b: nil, c: nil, d: nil} b = {a: 1, b: 2, c: nil} a.left_merge(b) # => {a: 1, b: 2, c: nil, d: nil} ```` So, it takes the first hash, and for any values th...dkniffin (Derek Kniffin)
Well, it's not just slack. It's anything that uses markdown. That includes Github, Stack overflow, Jekyll, PivitolTracker, Jira, and probably many other technical tools. Markdown has become a pseudo-standard, and it's used in tons of pla...dkniffin (Derek Kniffin)
I would like to propose changing ruby's log output slightly. The issue I have is with output like this: ~~~ NoMethodError: undefined method `some_method' for nil:NilClass ~~~ In particular, I don't like how some_method has a back...dkniffin (Derek Kniffin)