asdsa

Ruby code posted
created at 09 Apr 20:38

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class FixBorders
  def go_horse!
    all_images = load_image_list
    
    all_images.each do |image|
      download(image)
      fixed_images = fix(image)
      upload_images(fixed_images)
    end
  end
  
  private
  # . . .
end
243 Bytes in 2 ms with coderay