-
-
Save asonas/10363347 to your computer and use it in GitHub Desktop.
Revisions
-
asonas revised this gist
Apr 10, 2014 . 1 changed file with 6 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,12 +8,16 @@ def DOWNLOAD(today) puts "Free Java Download" puts JAVA `open #{JAVA}` if DARWIN? end private def DARWIN? `uname`.chomp == "Darwin" end def TODAY! Date.today end JAVA + YOU DOWNLOAD TODAY! -
itochan revised this gist
Apr 10, 2014 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ require 'date' require 'i18n' JAVA = "http://www.java.com/#{I18n.locale}/" YOU = `whoami` def DOWNLOAD(today) -
itochan revised this gist
Apr 10, 2014 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,9 +7,7 @@ def DOWNLOAD(today) puts "Free Java Download" puts JAVA `open #{JAVA}` if `uname`.chomp == "Darwin" end def TODAY! -
itochan revised this gist
Apr 10, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ require "date" JAVA = "http://www.java.com/en/" YOU = `whoami` def DOWNLOAD(today) puts "Free Java Download" -
itochan revised this gist
Sep 1, 2013 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,14 +1,14 @@ require "date" JAVA = "http://www.java.com/en/" YOU = "" def DOWNLOAD(today) puts "Free Java Download" puts JAVA if `uname`.chomp == "Darwin" `open #{JAVA}` end end -
itochan revised this gist
Sep 1, 2013 . 1 changed file with 6 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,7 @@ require "date" JAVA = 1 YOU = 1 def DOWNLOAD(today) puts "Free Java Download" @@ -13,5 +12,9 @@ def DOWNLOAD(today) end end def TODAY! Date.today end JAVA + YOU DOWNLOAD TODAY! -
itochan revised this gist
Sep 1, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,7 @@ def DOWNLOAD(today) puts "Free Java Download" puts "http://www.java.com/en/" if `uname`.chomp == "Darwin" `open http://www.java.com/en/` -
itochan revised this gist
Sep 1, 2013 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,8 +7,9 @@ def DOWNLOAD(today) puts "Free Java Download" if `uname`.chomp == "Darwin" `open http://www.java.com/en/` end end JAVA + YOU -
itochan created this gist
Sep 1, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ require 'date' JAVA = 1 YOU = 1 TODAY = Date.today def DOWNLOAD(today) puts "Free Java Download" # Work on OS X `open http://www.java.com/en/` end JAVA + YOU DOWNLOAD TODAY