Guest User

Untitled

a guest
Jul 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. #!/usr/bin/env ruby
  2.  
  3. tracks = [] << %w(鮮やか な 殺人) << %w(テレキャスター の 真実) <<
  4. %w(Sadistic Summer) << %w(ターボチャージャー ON) << %w(Acoustic) <<
  5. %w(O F T) << %w(CRAZY 感情 STYLE) << %w(トルネード G) << %w(傍観) <<
  6. %w(TK in the 夕景) << %w(想像 の Security) << %w(感覚 UFO) <<
  7. %w(秋 の 気配 の アルペジオ) << %w(ラスト ダンス レボリューション) <<
  8. %w(Sergio Echigo) << %w(nakano kill you) << %w(COOL J) << %w(DISCO FLIGHT) <<
  9. %w(knife vacation) << %w(am 3:45) << %w(赤い 誘惑) << %w(1/f の 誘惑) <<
  10. %w(i not crazy am you are) << %w(夕景 の 記憶) << %w(Telecastic fake show) <<
  11. %w(Re automation) << %w(24 REVERSE) << %w(ハカイヨ ノ ユメ) <<
  12. %w(Hysteric phase show) << %w(Tremolo + A) << %w(JPOP Xfile) <<
  13. %w(a 7days wonder) << %w(a over die) << %w(moment A rhythm) <<
  14. %w(seacret cm) << %w(mib 126) << %w(I was music) << %w(シークレット G) <<
  15. %w(シャンディ) << %w(this is is this ?) << %w(a symmetry) << %w(eF) <<
  16. %w(Can you kill a secret ?) << %w(illusion is mine)
  17.  
  18. if ARGV.include? '--help'
  19. puts "Usage: \n\truby #{$0} [time [words]]"
  20. exit
  21. end
  22.  
  23. (ARGV[0] || 10).to_i.times do
  24. tracks.flatten.uniq.shuffle.take(rand((ARGV[1] || 5).to_i + 1)).each {|i| print i, ' ' }
  25. puts
  26. end
Add Comment
Please, Sign In to add comment