open('binary', 'wb') do |f| (0..100).step(10) { |b| f << b.chr }ends = open('binary', 'rb') { |f| f.read }