Stephan Kaag
Stephan Kaag
Add https://stakestrategy.com
Only call `slider.updateOptions` when options change
Let's say for example my machine represents a light bulb. The two obvious states would be 'on' and 'off'. But, if the bulb is dimmable and the dimmer value is...
Works: ``` i = 0 threads = [1, 2].collect do Thread.new do Redis::Semaphore.new("foo", :redis => Redis.new(:db => 15)).lock do i += 1 end end end threads.each &:join i.should == 2...