Oleg Andreev



Software designer with focus on user experience and security.

You may start with my selection of articles on Bitcoin.

Переводы некоторых статей на русский.



Product architect at Chain.

Author of Gitbox version control app.

Author of CoreBitcoin, a Bitcoin toolkit for Objective-C.

Author of BTCRuby, a Bitcoin toolkit for Ruby.

Former lead dev of FunGolf GPS, the best golfer's personal assistant.



I am happy to give you an interview or provide you with a consultation.
I am very interested in innovative ways to secure property and personal interactions: all the way from cryptography to user interfaces. I am not interested in trading, mining or building exchanges.

This blog enlightens people thanks to your generous donations: 1TipsuQ7CSqfQsjA9KU5jarSB1AnrVLLo

object.or { default_value }

Little helper to deal with nils, empty strings and arrays.
class ::Object
  def blank?; false end
  def or(default = nil)
    blank? ? (block_given? ? yield : default) : self 
  end
  def and
    blank? ? nil : yield(self)
  end
end
class ::FalseClass
  def blank?; true end
end
class ::NilClass
  def blank?; true end
end
class ::Array
  def blank?; compact.empty? end
end
class ::String
  def blank?; strip.empty? end
end
class ::Hash
  def blank?; values.empty? end
end
Examples:
"   ".or "Untitled"  # => "Untitled"
"   ".or { calculate_value } # => "42"
[nil].or { ["apple", "orange"] } # => ["apple", "orange"]

"data".and {|data| Wrapper.new(data) } # => wrapper
"  ".and { ... } # => nil