Last active
May 30, 2016 19:29
-
-
Save cody-code-wy/f07e825f9fbac34aee047105a17b8ea7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'open-uri' | |
hamlet = open("http://ruby.bastardsbook.com/files/fundamentals/hamlet.txt").read | |
open("hamlet.txt",'w') { |file| file.write(hamlet) } | |
hamlet = open("hamlet.txt",'r') | |
hamlet.readlines.each_with_index do |line,index| | |
puts line if index % 42 == 0 | |
end | |
hamlet.close |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
file = File.open("f1.txt","w") | |
file.puts "Hello File" | |
file.close |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
file = open("Ada_Lovelace.txt",'r') | |
contents = file.read | |
puts contents |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'open-uri' | |
wikipedia_article = 'https://www.wikipedia.org/wiki/Ada_Lovelace' | |
wikipedia = open(wikipedia_article).read | |
local_file = open("Ada_Lovelace.txt",'w') | |
local_file.write(wikipedia) | |
local_file.close |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'open-uri' | |
wikipedia_article = 'https://www.wikipedia.org/wiki/Ada_Lovelace' | |
wikipedia = open(wikipedia_article).read | |
open("Ada_Lovelace_2.txt",'w') do |file| | |
file.write(wikipedia) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment