pry-twitter 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +13 -0
  3. data/LICENSE.txt +24 -0
  4. data/PRY_LICENSE.txt +25 -0
  5. data/README.md +546 -0
  6. data/Vagrantfile +48 -0
  7. data/art/16-60174b5812.jpg +0 -0
  8. data/art/16-a31deea6f0.jpg +0 -0
  9. data/art/17-b3d5d6f6c2.jpg +0 -0
  10. data/art/44-e44743a5bb.jpg +0 -0
  11. data/art/51-5e4dc5fd92.jpg +0 -0
  12. data/art/51-82bde81305.jpg +0 -0
  13. data/art/51-ad821fa377.jpg +0 -0
  14. data/art/51-b90d5dd6a6.jpg +0 -0
  15. data/art/51-da43a4ef4f.jpg +0 -0
  16. data/art/51-e94c3387e1.jpg +0 -0
  17. data/art/52-eec4df2edf.jpg +0 -0
  18. data/art/53-9d231893e1.jpg +0 -0
  19. data/art/54-39b1063483.jpg +0 -0
  20. data/art/55-e41f9896d0.jpg +0 -0
  21. data/art/56-c82d4e5b61.jpg +0 -0
  22. data/art/59-2a2c9cd962.jpg +0 -0
  23. data/art/61-3970c79d47.jpg +0 -0
  24. data/art/62-5704cc1652.jpg +0 -0
  25. data/art/62-b0aceb0fa6.jpg +0 -0
  26. data/art/62-da0faf972e.jpg +0 -0
  27. data/art/frankewilde.jpg +0 -0
  28. data/art/rollingstone.jpg +0 -0
  29. data/art/tide.jpg +0 -0
  30. data/art/windows10.png +0 -0
  31. data/lib/pry-send_tweet.rb +77 -0
  32. data/lib/pry/pager/system_pager.rb +25 -0
  33. data/lib/pry/send_tweet/commands/base_command.rb +72 -0
  34. data/lib/pry/send_tweet/commands/easter_eggs.rb +564 -0
  35. data/lib/pry/send_tweet/commands/paging/paging_support.rb +16 -0
  36. data/lib/pry/send_tweet/commands/read_tweets.rb +93 -0
  37. data/lib/pry/send_tweet/commands/read_tweets/translate_actions.rb +94 -0
  38. data/lib/pry/send_tweet/commands/send_tweet.rb +164 -0
  39. data/lib/pry/send_tweet/commands/twitter_action.rb +118 -0
  40. data/lib/pry/send_tweet/commands/twitter_action/delete_tweet_actions.rb +19 -0
  41. data/lib/pry/send_tweet/commands/twitter_action/follow_actions.rb +66 -0
  42. data/lib/pry/send_tweet/commands/twitter_action/like_actions.rb +23 -0
  43. data/lib/pry/send_tweet/commands/twitter_action/mute_actions.rb +23 -0
  44. data/lib/pry/send_tweet/commands/twitter_action/profile_actions.rb +60 -0
  45. data/lib/pry/send_tweet/commands/twitter_action/suggested_actions.rb +20 -0
  46. data/lib/pry/send_tweet/commands/twitter_search.rb +36 -0
  47. data/lib/pry/send_tweet/renderers/tweet_renderer.rb +103 -0
  48. data/lib/pry/send_tweet/renderers/user_renderer.rb +17 -0
  49. data/lib/pry/send_tweet/tty-box.rb +73 -0
  50. data/lib/pry/send_tweet/twitter_io.rb +26 -0
  51. data/lib/pry/send_tweet/version.rb +6 -0
  52. data/lib/time-ago-in-words/README.md +14 -0
  53. data/lib/time-ago-in-words/lib/time-ago-in-words.rb +37 -0
  54. data/lib/time-ago-in-words/time-ago-in-words.gemspec +14 -0
  55. data/pry-send_tweet.gemspec +23 -0
  56. data/samples/freebsd-zshrc +5 -0
  57. data/samples/loader.conf +1 -0
  58. data/samples/tmuxinator-vagrant.yml +11 -0
  59. data/vms/freebsd.rb +18 -0
  60. metadata +145 -0
data/Vagrantfile ADDED
@@ -0,0 +1,48 @@
1
+ require 'shellwords'
2
+ insert_root_path = ->(tmux_conf) {
3
+ conf = YAML.load(tmux_conf)
4
+ conf['root'] = '/app'
5
+ YAML.dump(conf)
6
+ }
7
+
8
+ Vagrant.configure("2") do |config|
9
+ config.vm.box = "generic/freebsd12"
10
+ config.vm.synced_folder Dir.getwd, "/app", type: "rsync"
11
+
12
+ config.vm.provider "virtualbox" do |vb|
13
+ vb.memory = "256"
14
+ end
15
+
16
+ # Install useful packages
17
+ cmds = [
18
+ "sudo pkg install -y zsh tmux",
19
+ "sudo chsh -s zsh vagrant"
20
+ ]
21
+ config.vm.provision "shell", inline: cmds.join(' && ')
22
+
23
+ # Configure date & time
24
+ zone = ENV.key?('VMTZ') ? ENV['VMTZ'] : 'CET'
25
+ cmds = [
26
+ "cp /usr/share/zoneinfo/#{zone} /etc/localtime"
27
+ ]
28
+ config.vm.provision "shell", inline: cmds.join(' && ')
29
+
30
+ # Insert files into VM
31
+ tmux_conf = insert_root_path.call File.binread('./samples/tmuxinator-vagrant.yml')
32
+ cmds = [
33
+ "sudo echo '#{File.binread('./samples/loader.conf')}' >> /boot/loader.conf",
34
+ "echo '#{File.binread('./samples/freebsd-zshrc')}' > /home/vagrant/.zshrc",
35
+ "mkdir -p /home/vagrant/.config/tmuxinator",
36
+ "echo #{Shellwords.shellescape(tmux_conf)} > /home/vagrant/.config/tmuxinator/pry_send_tweet.yml"
37
+ ]
38
+ config.vm.provision "shell", inline: cmds.join(' && ')
39
+
40
+ # Install Ruby
41
+ # Install pry-send_tweet dependencies (..as FreeBSD packages)
42
+ cmds = [
43
+ "sudo pkg install -y ruby rubygem-tmuxinator rubygem-pry rubygem-twitter " \
44
+ "rubygem-tty-box rubygem-unicode-display_width"
45
+ ]
46
+ config.vm.provision "shell", inline: cmds.join(' && ')
47
+ config.vm.provision :reload
48
+ end
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/art/tide.jpg ADDED
Binary file
data/art/windows10.png ADDED
Binary file
@@ -0,0 +1,77 @@
1
+ class Pry
2
+ module SendTweet
3
+ #
4
+ # @return [Integer]
5
+ # The default width of a box that contains a tweet or user.
6
+ #
7
+ # @api private
8
+ #
9
+ DEFAULT_BOX_WIDTH = 100
10
+
11
+ #
12
+ # @return [Integer]
13
+ # The default height of a box that contains a tweet or user.
14
+ #
15
+ DEFAULT_BOX_HEIGHT = 8
16
+
17
+ #
18
+ # @return [Integer]
19
+ # The number of tweets to request when reading tweets from Twitters API.
20
+ #
21
+ # @api private
22
+ #
23
+ DEFAULT_READ_SIZE = 200
24
+
25
+ require 'pry' if not defined?(Pry::ClassCommand)
26
+ require 'twitter'
27
+ require 'cgi'
28
+ require 'timeout'
29
+ require 'yaml'
30
+ require 'time-ago-in-words'
31
+ require_relative 'pry/send_tweet/twitter_io'
32
+ require_relative 'pry/pager/system_pager'
33
+ require_relative 'pry/send_tweet/tty-box'
34
+ require_relative 'pry/send_tweet/renderers/tweet_renderer'
35
+ require_relative 'pry/send_tweet/renderers/user_renderer'
36
+ require_relative 'pry/send_tweet/commands/paging/paging_support'
37
+ require_relative 'pry/send_tweet/commands/base_command'
38
+ require_relative 'pry/send_tweet/commands/send_tweet'
39
+ require_relative 'pry/send_tweet/commands/read_tweets'
40
+ require_relative 'pry/send_tweet/commands/twitter_search'
41
+ require_relative 'pry/send_tweet/commands/twitter_action'
42
+ require_relative 'pry/send_tweet/commands/easter_eggs'
43
+ require_relative 'pry/send_tweet/version'
44
+
45
+ # @api private
46
+ def self.merge_yaml_file!(config, path)
47
+ if File.readable?(path)
48
+ warn "[warning] Reading pry-send_tweet configuration from '#{path}'."
49
+ twitter_config = YAML.safe_load File.binread(path)
50
+ config.twitter = Pry::Config.from_hash(twitter_config)
51
+ else
52
+ config.twitter = Pry::Config.from_hash({})
53
+ end
54
+ rescue => e
55
+ warn "[warning] Error parsing '#{path}' .. (#{e.class})."
56
+ end
57
+ end
58
+ end
59
+
60
+ Pry.configure do |config|
61
+ b = lambda do |*ary|
62
+ pry = ary[-1]
63
+ twitter = Twitter::REST::Client.new do |config|
64
+ Pry::SendTweet.merge_yaml_file! pry.config,
65
+ File.join(ENV['HOME'], '.pry-send_tweet.yml')
66
+ config.consumer_key = pry.config.twitter.consumer_key
67
+ config.consumer_secret = pry.config.twitter.consumer_secret
68
+ config.access_token = pry.config.twitter.access_token
69
+ config.access_token_secret = pry.config.twitter.access_token_secret
70
+ end
71
+ twitter.user_agent = pry.config.twitter.user_agent ||
72
+ "pry-send_tweet.rb v#{Pry::SendTweet::VERSION}"
73
+ pry.add_sticky_local(:_twitter_) { twitter }
74
+ end
75
+ config.hooks.add_hook(:before_eval, 'pry_send_tweets_before_eval', b)
76
+ config.hooks.add_hook(:before_session, 'pry_send_tweets_before_session', b)
77
+ end
@@ -0,0 +1,25 @@
1
+ class Pry::Pager::SystemPager
2
+ def pid
3
+ pager.pid
4
+ end
5
+
6
+ def fork
7
+ pager
8
+ nil
9
+ end
10
+
11
+ def fast_exit!
12
+ Process.kill 'SIGKILL', pid
13
+ Process.wait pid
14
+ end
15
+
16
+ private
17
+ # Patch to avoid spawning a shell when launching the pager.
18
+ def pager
19
+ @pager ||= begin
20
+ ary = self.class.default_pager.split(' ')
21
+ io = IO.popen(ary, 'w')
22
+ io.tap{|io| io.sync = true}
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,72 @@
1
+ Fry = Pry
2
+
3
+ class Pry::Slop
4
+ DEFAULT_OPTIONS.merge!(strict: true)
5
+ end
6
+
7
+ class Pry::SendTweet::BaseCommand < Pry::ClassCommand
8
+ include Pry::SendTweet::TweetRenderer
9
+ include Pry::SendTweet::UserRenderer
10
+ include Pry::SendTweet::PagingSupport
11
+
12
+ def self.inherited(kls)
13
+ kls.group 'Twitter'
14
+ end
15
+
16
+ def process(*args)
17
+ if nil == _pry_.config.twitter
18
+ raise Pry::CommandError, "_pry_.config.twitter is nil!\n" \
19
+ "Please set the required keys and tokens to send " \
20
+ "tweets using Twitters API. \n" \
21
+ "Visit https://gitlab/trebor8/fry-send_tweet.rb to learn how."
22
+ end
23
+ end
24
+
25
+ private
26
+
27
+ def default_read_size
28
+ _pry_.config.twitter.default_read_size || Pry::SendTweet::DEFAULT_READ_SIZE
29
+ end
30
+
31
+ def box_height
32
+ Pry::SendTweet::DEFAULT_BOX_HEIGHT
33
+ end
34
+
35
+ def box_width
36
+ _pry_.config.twitter.box_width || Pry::SendTweet::DEFAULT_BOX_WIDTH
37
+ end
38
+
39
+ def search_str_for_users(*ary)
40
+ ary.map do |str|
41
+ if str.start_with?('https://twitter.com')
42
+ path = URI.parse(URI.escape(str)).path
43
+ path.split('/').reject(&:empty?).first
44
+ elsif str.start_with?('@')
45
+ str[1..-1]
46
+ else
47
+ str
48
+ end
49
+ end
50
+ end
51
+
52
+ # With thanks to ActionView for this method
53
+ def word_wrap(text, options = {})
54
+ line_width = box_width
55
+ text.split("\n").collect! do |line|
56
+ line.length > line_width ? line.gsub(/(.{1,#{line_width}})(\s+|$)/, "\\1\n").strip : line
57
+ end * "\n"
58
+ end
59
+
60
+ def numbered_list(title, ary)
61
+ title = "\n#{bold(title.chomp)}\n\n"
62
+ title + ary.map.with_index { |item, index| yield(item, index+1) }.join("\n")
63
+ end
64
+
65
+ def time_format
66
+ "%-d %b %Y, %-I:%M:%S %p"
67
+ end
68
+
69
+ def twitter
70
+ @twitter ||= _pry_.binding_stack[-1].eval('_twitter_')
71
+ end
72
+ end
@@ -0,0 +1,564 @@
1
+ Pry.commands.instance_eval do
2
+ command(/[Bb]ismillah/, "") {
3
+ _pry_.pager.page [
4
+ "The ِBeneficient / All-Compassionate / Most Gracious",
5
+ "The Most Merciful / Ever-Merciful / Merciful / Most Clement",
6
+ 'The King / Lord / Sovereign / Dominion / Master [also means "the God/ Lord, the One and Only", "Possessor of Supreme Power or Authority"]',
7
+ "The Holy / All-Holy / All-Pure / Sacred / All-Sacred",
8
+ "The Giver of Peace / Peace / All-Calm / Ever-Tranquil",
9
+ "The Granter of Security / the Giver / Faith / Supreme Believer (of Belief) / Giver of Belief / All-Assurer",
10
+ "The Controller / Absolute Authority Over All / Guardian Over All / Absolute Master / Eternal Dominating",
11
+ "The Exalted in Might and Power / Exalted / Powerful / Almighty / Mighty",
12
+ "The Omnipotent / Supreme Power / Possessor of Having All Power / Strong",
13
+ "The Possessor of Greatness / Supreme / Justly Proud",
14
+ "The Creator / Creator of the Universe / Maker / True Originator / Absolute Author",
15
+ "The Initiator / Evolver/ Eternal Spirit Worshipped By All, Have Absolute Power Over All Matters, Nature and Events",
16
+ "The Fashioner / Shaper / Designer / Artist",
17
+ "The Repeatedly Forgiving / Absolute Forgiver / Pardoner / Condoner [He Who is Ready to Pardon and Forgive]",
18
+ "The Subduer / Overcomer / Conqueror / Absolute Vanquisher [Possessor of Who Subdues Evil and Oppression]",
19
+ "The ِِAbsolute Bestower / Giver / Grantor / Great Donor",
20
+ "The Provider / Sustainer / Bestower of Sustenance / All-Provider",
21
+ "The Opener / Opener of the Gates of Profits / Reliever / The Victory Giver",
22
+ "The Knowing / All-Knower / Omniscient / All-Knowledgeable / Possessor of Knowing Much of Ever Thing / All-Knowing",
23
+ "The Restrainer / Withholder / Straightener / Absolute Seizer",
24
+ "The Extender / Expander / Generous Provider",
25
+ "The Abaser / Humiliator / Downgrader [Possessor of Giving Comfort, Free from Pain Anxiety or Troubles]",
26
+ "The Exalter / Upgrader [of Ranks]",
27
+ "The Giver of Honor / Bestower of Honor / Empowerer",
28
+ "The Giver of Dishonor / the Giver of Disgrace",
29
+ "The Hearing / All-Hearing / Hearer of Invocation",
30
+ "The All-Seeing / All-Seer / Ever-Clairvoyant / Clear-Sighted / Clear-Seeing",
31
+ "The Judge / Arbitrator / Arbiter / All-Decree / Possessor of Authority of Decisions and Judgment",
32
+ "The Just / Authorized and Straightforward Judge of Dealing Justly",
33
+ "The Gentle / Benignant / Subtly Kind / All-Subtle",
34
+ "The All-Aware / Well-Acquainted / Ever-Adept",
35
+ "The Forbearing / Indulgent / Oft Forbearing / All-Enduring (of Suffering Pain with Patience)",
36
+ "The Most Great / Ever-Magnificent / Most Supreme / Exalted / Absolute Dignified",
37
+ "The Ever-Forgiving / Oft-Forgiving",
38
+ "The Grateful / Appreciative / Multiplier of Rewards",
39
+ "The Sublime / Ever-Exalted / Supreme / Most High / Most Lofty",
40
+ "The Great/ Ever-Great / Grand / Most Great / Greatly Abundant of Extent, Capacity and Importance",
41
+ "The Preserver / Ever-Preserving / All-Watching / Protector / Guardian / Oft-Conservator",
42
+ "The Nourisher / Feeder",
43
+ "The Bringer of Judgment / Ever-Reckoner [the One Who Takes Account of All Matters]",
44
+ "The Majestic / Exalted / Oft-Important / Splendid",
45
+ "The Noble / Bountiful / Generous / Precious / Honored / Benefactor",
46
+ "The Watchful / Observer / Ever-Watchful / Watcher",
47
+ "The Responsive / Answerer / Supreme Answerer / Accepter of Invocation",
48
+ "The Vast/ All-Embracing / Omnipresent / Boundless / All-Encompassing",
49
+ "The Wise/ Ever-Wise / Endowed with Sound Judgment",
50
+ "The Affectionate / Ever-Affectionate/ Loving One/ Loving/ the One Who Tenders and Warm Hearts",
51
+ "The All-Glorious / Majestic / Ever-Illustrious [Oft-Brilliant in Dignity, Achievements or Actions]",
52
+ "The Resurrector / Awakener / Arouser / Dispatcher",
53
+ "The Witness / Testifier / Ever-Witnessing",
54
+ "The Truth / Reality / the Only One Certainly Sound and Genuine in Truth",
55
+ "The Trustee, The Dependable, The Advocate",
56
+ "The Strong",
57
+ "The Firm, The Steadfast",
58
+ "The Friend, Helper",
59
+ "The All Praiseworthy",
60
+ "The Accounter, The Numberer of All",
61
+ "The Originator, The Producer, The Initiator",
62
+ "The Restorer, The Reinstater Who Brings Back All",
63
+ "The Giver of Life",
64
+ "The Bringer of Death",
65
+ "The Living",
66
+ "The Subsisting, The Independent",
67
+ "The Perceiver, The Finder, The Unfailing",
68
+ "The Illustrious, The Magnificent",
69
+ "The Unique, The Single",
70
+ "The One, The Indivisible",
71
+ "The Eternal, The Absolute, The Self-Sufficient",
72
+ "The All-Powerful, He Who is able to do Everything",
73
+ "The Determiner, The Dominant",
74
+ "The Expediter, He Who Brings Forward",
75
+ "The Delayer, He Who Puts Far Away",
76
+ "The First, The Beginning-less",
77
+ "The Last, The Endless",
78
+ "The Manifest, The Evident, The Outer",
79
+ "The Hidden, The Unmanifest, The Inner",
80
+ "The Patron, The Protecting Friend, The Friendly Lord",
81
+ "The Supremely Exalted, The Most High",
82
+ "The Good, The Beneficent",
83
+ "The Ever-Returning, Ever-Relenting",
84
+ "The Avenger",
85
+ "The Pardoner, The Effacer, The Forgiver",
86
+ "The Kind, The Pitying",
87
+ "The Owner of all Sovereignty",
88
+ "The Owner, Lord of Majesty and Honour",
89
+ "The Equitable, The Requiter",
90
+ "The Gatherer, The Unifier",
91
+ "The Rich, The Independent",
92
+ "The Enricher, The Emancipator",
93
+ "The Preventer, The Withholder, The Shielder, The Defender",
94
+ "The Distressor, The Harmer, The Afflictor",
95
+ "The Propitious, The Benefactor, The Source of Good",
96
+ "The Light",
97
+ "The Guide, The Way",
98
+ "The Originator, The Incomparable, The Unattainable, The Beautiful",
99
+ "The Immutable, The Infinite, The Everlasting",
100
+ "The Heir, The Inheritor of All",
101
+ "The Guide to the Right Path",
102
+ "The Timeless, The Patient"
103
+ ].sample
104
+ }
105
+ alias_command '99', 'bismillah'
106
+
107
+ DISCO_BISCUITS = {
108
+ 'Steve Miller Band - Abracadabra (12" Version) (Vinyl)' => 'https://www.youtube.com/watch?v=YqloCj1ZNSw',
109
+ 'Billy Joel Piano Man Lyrics' => 'https://www.youtube.com/watch?v=ErEzQOFzPXU',
110
+ '6IX9INE - STOOPID FT. BOBBY SHMURDA (Official Music Video)' => 'https://www.youtube.com/watch?v=VDa5iGiPgGs',
111
+ 'NOOP DOGG - O M G (3RIS D3D3 REMIX)' => 'https://www.youtube.com/watch?v=PJL8-DZEscs',
112
+ 'The Frames - Star Star **' => 'https://www.youtube.com/watch?v=eMccPJqyg0o',
113
+ '6ix9ine, Nicki Minaj, Murda Beatz - “FEFE” (Official Music Video)' => 'https://www.youtube.com/watch?v=V_MXGdSBbAI',
114
+ 'Breaking Bad - Jesse\'s emotional speech' => 'https://www.youtube.com/watch?v=aL9aI4JPtPQ',
115
+ 'The Frames - Revelate with lyrics' => 'https://www.youtube.com/watch?v=SPC0sRQbJ98',
116
+ 'The Way I Am' => 'https://www.youtube.com/watch?v=82lB-gI-uuQ',
117
+ 'Coldplay - Fix You' => 'https://www.youtube.com/watch?v=k4V3Mo61fJM',
118
+ 'O Ri Chiraiya lyrics' => 'https://www.youtube.com/watch?v=56bdi4AJFFo',
119
+ 'Will Smith - Fresh Prince of Bel Air (Le Boeuf Remix)' => 'https://www.youtube.com/watch?v=LPvCeNxsG-w',
120
+ 'Midnight Oil - Beds Are Burning' => 'https://www.youtube.com/watch?v=ejorQVy3m8E',
121
+ 'Lenny Kravitz - Are You Gonna Go My Way' => 'https://www.youtube.com/watch?v=8LhCd1W2V0Q',
122
+ 'Yes - Owner Of A Lonely Heart (vinyl)' => 'https://www.youtube.com/watch?v=5mYMFcnOURs',
123
+ 'Toto - Africa (vinyl)' => 'https://www.youtube.com/watch?v=-M0m5mB_q0Y',
124
+ 'Bill Withers - Just The Two Of Us (Doumëa Remix ft. Kevin Cohen)' => 'https://www.youtube.com/watch?v=5mYMFcnOURs',
125
+ 'Pink Floyd - Money (master tape)' => 'https://www.youtube.com/watch?v=gmV9iX-Q754',
126
+ 'Pink Floyd - Wish You Were Here' => 'https://www.youtube.com/watch?v=IXdNnw99-Ic',
127
+ 'CHIEF KEEF - 3HUNNA / shot by @DJKENN_AON' => 'https://www.youtube.com/watch?v=QFEhJfUcD1Q',
128
+ 'Lil Boosie: We Out Chea' => 'https://www.youtube.com/watch?v=tOYnJv3ztKM',
129
+ 'John Legend All Of Me Lyrics' => 'https://www.youtube.com/watch?v=Mk7-GRWq7wA',
130
+ 'Im a trumpsta motherfucker' => 'https://www.youtube.com/watch?v=WhGsq9X1VZM',
131
+ 'Big Man Tyrone Shills Terry Davis\' TempleOS' => 'https://www.youtube.com/watch?v=HFPM-R_d44M',
132
+ 'Sam Song..... Celtic Storm' => 'https://www.youtube.com/watch?v=TjJR-fvGOXc',
133
+ 'Johnny Cash Reads The New Testament: Matthew Chapter 7' => 'https://www.youtube.com/watch?v=27TfH3hvqAQ',
134
+ 'Tina Turner - Golden Eye (HD)' => 'https://www.youtube.com/watch?v=4hGQ97tCTOs',
135
+ 'Red Hot Chili Peppers - By The Way (Lukas Grinys Remix)' => 'https://www.youtube.com/watch?v=lESwb2mU04M',
136
+ 'Avril Lavigne - I Love You' => 'https://www.youtube.com/watch?v=Q0-omvd2u1s',
137
+ 'RIGGA x DXTR - Город не спит 🔥' => 'https://www.youtube.com/watch?v=d3zQTHbEpkM',
138
+ '2017 11 26T18 46 30+00 00 171126WorshipWorkPlay' => 'https://www.youtube.com/watch?v=i-Re-PbqNRg',
139
+ 'Black Eyed Peas - Where Is The Love (BCX ft. Ellena Soule Rework)' => 'https://www.youtube.com/watch?v=0_Ro2ifLRpw',
140
+ 'Charlie Puth - Attention (D33pSoul Remix)' => 'https://www.youtube.com/watch?v=IMj7bSSOEAk',
141
+ 'Bob Marley - Three little birds(Video Oficial)(HQ)' => 'https://www.youtube.com/watch?v=4k2PJFPu57Y',
142
+ 'War veteran: "Please don\'t talk about leaving"' => 'https://www.youtube.com/watch?v=1jGnaPrjeh4',
143
+ 'Sunshine by Matisyahu Lyrics' => 'https://www.youtube.com/watch?v=xmQ2QrNnZIE',
144
+ 'Martin Garrix - Animals (Official Video)' => 'https://www.youtube.com/watch?v=gCYcHz2k5x0',
145
+ 'DVBBS & Borgeous - TSUNAMI (Original Mix)' => 'https://www.youtube.com/watch?v=0EWbonj7f18',
146
+ 'We Were Soldiers Broken Arrow' => 'https://www.youtube.com/watch?v=ctnK7wdJmAo',
147
+ '✵ Жизнь дает свое ✵ (2018)' => 'https://www.youtube.com/watch?v=Z2ozs8-W4H4',
148
+ 'Vladimir Putin Style - True Leader 2017' => 'https://www.youtube.com/watch?v=_A4MmpJV94I',
149
+ 'Survivor - Eye Of The Tiger (Rocky OST)' => 'https://www.youtube.com/watch?v=FLZS3jQPn',
150
+ 'Ноггано, AK 47 - Russian Paradise' => 'https://www.youtube.com/watch?v=Z0s1RTZUAqQ',
151
+ 'Meiko - Lights On(Mellen Gi Remix)' => 'https://www.youtube.com/watch?v=HVzL0XjdFfI',
152
+ '2Pac - Real Talk (2019)' => 'https://www.youtube.com/watch?v=_3LuY9isL_Y',
153
+ 'Девочка верна только одному..♛' => 'https://www.youtube.com/watch?v=UGmRumCtCrc',
154
+ 'Linkin Park - Numb (Areon Remix) /Chester Bennington/' => 'https://www.youtube.com/watch?v=-g29i6IOzUQ',
155
+ 'Gorillaz - Clint Eastwood (Godlips Remix)' => 'https://www.youtube.com/watch?v=JfJLyuXgjOc',
156
+ 'Narwhals song swimming in the ocean !' => 'https://www.youtube.com/watch?v=dP2lyc53qtI',
157
+ 'Justin Bieber - Sorry (D33pSoul Remix) /Tayler Buono Cover/' => 'https://www.youtube.com/watch?v=r5IO6ReMWXE',
158
+ 'Tupac Ft Elton John Ghetto Gospel Lyrics' => 'https://www.youtube.com/watch?v=eC3F1uZJ2jc',
159
+ 'SWAY - STILL SPEEDIN\' (With Lyrics) OUT NOW!!!!' => 'https://www.youtube.com/watch?v=tRldCYkU8nA',
160
+ 'Chief Keef is 300 years old' => 'https://www.youtube.com/watch?v=VWUg1fgYPiE',
161
+ 'DJ Fresh ft Sian Evans - \'Louder\' (Official Video)' => 'https://www.youtube.com/watch?v=eE-dwpWpscU',
162
+ '50 Cent - Realest Niggaz (ft. 2Pac & The Notorious B.I.G) 2018' => 'https://www.youtube.com/watch?v=QI_7C3dUgqw',
163
+ 'Tupac - Last Muthafucka Breathin\'' => 'https://www.youtube.com/watch?v=F3kN5x51wjE',
164
+ 'Rihanna - Work ft. Drake (Koni Remix) /Emma & Shaun Cover/' => 'https://www.youtube.com/watch?v=ipjXYtoVG-Q',
165
+ 'Money Gang - 2Pac Ft. Notorious B.I.G (HD)' => 'https://www.youtube.com/watch?v=R96NrNdAzQE',
166
+ 'MKJ - Robot /Frank Sinatra/' => 'https://www.youtube.com/watch?v=bGT1SbFW9OQ',
167
+ 'D33pSoul - La Richesse (Original Mix) "My richness is life" /Bob Marley/' => 'https://www.youtube.com/watch?v=tCXqm8EQtWQ',
168
+ 'Damo & Ivor \'Maniac 2012\' (Official Video)' => 'https://www.youtube.com/watch?v=js-Yet5kskA',
169
+ '6IX9INE "Kooda" (WSHH Exclusive - Official Music Video)' => 'https://www.youtube.com/watch?v=yz7Cn3pHibo',
170
+ 'Biz - Petrunko | Dubai mafia' => 'https://www.youtube.com/watch?v=mbUCvX29O3Y',
171
+ 'John Legend - All Of Me (Tiësto\'s Birthday Treatment Mix)' => 'https://www.youtube.com/watch?v=_9syE2UP11E',
172
+ 'Red Hot Chili Peppers - Give It Away (Lyrics)' => 'https://www.youtube.com/watch?v=exCEcmLw-Hc',
173
+ 'The Rolling Stones - Sympathy For The Devil (Official Lyric Video)' => 'https://www.youtube.com/watch?v=GgnClrx8N2k',
174
+ 'BEBE - 6ix9ine Ft. Anuel AA (Prod. By Ronny J) (Official Music Video)' => 'https://www.youtube.com/watch?v=ycV6cnK3SIs',
175
+ 'Troy Kingi - Grandma\'s Rocket Poem' => 'https://www.youtube.com/watch?v=HupYYkETK7Y',
176
+ 'Panic! At The Disco: Emperor\'s New Clothes [OFFICIAL VIDEO]' => 'https://www.youtube.com/watch?v=7qFF2v8VsaA',
177
+ 'Wild Turkey Surprise Bugs Bunny and Taz Full Clip HD' => 'https://www.youtube.com/watch?v=FOTlNOZB4Zo',
178
+ 'Chris Rea - Your Warm And Tender Love (vinyl)' => 'https://www.youtube.com/watch?v=4EBmz8itRkg',
179
+ 'Selena Gomez, Marshmello - Wolves (Lyrics)' => 'https://www.youtube.com/watch?v=xrbY9gDVms0',
180
+ 'Vance Joy - Riptide (Lyric Video' => 'https://www.youtube.com/watch?v=BdsdgL4_wuY',
181
+ '2Pac - Blame Rap (HD) Lyrics' => 'https://www.youtube.com/watch?v=J2AeXxhMmPc',
182
+ "Matisyahu - King Without A Crown (Live from Stubb's)" => 'https://www.youtube.com/watch?v=dsFpUW48Tnc',
183
+ 'ЛИТВИНЕНКО - Главное верить (2019)' => 'https://www.youtube.com/watch?v=pYzYCPeZz8A',
184
+ 'Matisyahu - One Day - Spinner (HD)' => 'https://www.youtube.com/watch?v=cXACMQtuuZI',
185
+ 'Immortal Technique - The Martyr' => 'https://www.youtube.com/watch?v=Q-VY0xflOkw',
186
+ '2Pac - Still Dre ft. Eazy E (2TenRecords Remix)' => 'https://www.youtube.com/watch?v=7PX1-wr6u1Q',
187
+ '2Pac ft. Eazy E - Shook Ones (Gappa Remix)' => 'https://www.youtube.com/watch?v=eUkj_of_Z-Q',
188
+ 'Me, Myself & I lyrics G-Eazy ft Bebe Rexha' => 'https://www.youtube.com/watch?v=9ji1R7zCObs',
189
+ 'Girls Aloud - Sound of The Underground - On Screen Lyrics' => 'https://www.youtube.com/watch?v=I8oHHGxrNus',
190
+ 'Eminem - Rap God (Explicit)' => 'https://www.youtube.com/watch?v=XbGs_qK2PQA',
191
+ 'DJ Snake ft. Justin Bieber - Let Me Love You (Koni Remix) /Emma Heesters Cover/' => 'https://www.youtube.com/watch?v=qwxrzDmck3M',
192
+ 'One Day- Matisyahu lyrics' => 'https://www.youtube.com/watch?v=sl9voSKJmEU',
193
+ '1root blazing' => 'https://www.youtube.com/watch?v=nElYKl2w4Jw',
194
+ 'KILLSHOT [Official Audio]' => 'https://www.youtube.com/watch?v=FxQTY-W6GIo',
195
+ '♦ Качай Головой ♦' => 'https://www.youtube.com/watch?v=pzo-v-JLGls',
196
+ 'Ноггано, AK 47 - Russian Paradise' => 'https://www.youtube.com/watch?v=Z0s1RTZUAqQ',
197
+ 'Pink Floyd --- We Don\'t Need No Education' => 'https://www.youtube.com/watch?v=GG1fgCHvDNQ',
198
+ 'Gigi D\'Agostino Bla Bla Bla' => 'https://www.youtube.com/watch?v=Hrph2EW9VjY',
199
+ 'Dynoro & Gigi D’Agostino - In My Mind' => 'https://www.youtube.com/watch?v=W9P_qUnMaFg',
200
+ '2Pac - Sick Track Ft. Eminem (Tekashi 69 diss) Banger' => 'https://www.youtube.com/watch?v=JQQ5KJjt9Z8',
201
+ 'Matisyahu - Jerusalem' => 'https://www.youtube.com/watch?v=GYr4Fz14C6w',
202
+ 'Ice Cube - Bang Bang (Ft. 2Pac) WestCoast Banger' => 'https://www.youtube.com/watch?v=59ZKK59ty-I',
203
+ '✦ Benjamin Franklin ✦' => 'https://www.youtube.com/watch?v=Mng2BukYPOo',
204
+ 'Музыка По-Черному.. ◘◙◘' => 'https://www.youtube.com/watch?v=Uucp0upmo3s',
205
+ '2Pac - Problem (HD) Ft. Ice Cube' => 'https://www.youtube.com/watch?v=2Wgfs8-Va9U',
206
+ '✦ Пролетело Детство ✦' => 'https://www.youtube.com/watch?v=xwtRiaYjoi0',
207
+ '✵Роль Брата✵' => 'https://www.youtube.com/watch?v=XKv-xpnS24M',
208
+ 'Хочешь напьёмся или гашиша.. ♪ ♫' => 'https://www.youtube.com/watch?v=aPLQ9ULc6p0',
209
+ 'Бандити, Жулики, Хулигани, Гобники, Бродяги (Чисто Криминала АУЕ)' => 'https://www.youtube.com/watch?v=ZkxpUTDT-FE',
210
+ 'Vanotek Feat. Eneli - Back To Me (Robert Cristian Remix)' => 'https://www.youtube.com/watch?v=GbdVAl03W_M',
211
+ 'Shawn Mendes - Treat You Better (Levi Remix)' => 'https://www.youtube.com/watch?v=LDIfIABWLRA',
212
+ 'Survivor - Eye Of The Tiger (Rocky OST)' => 'https://www.youtube.com/watch?v=FLZS3jQPnKw',
213
+ '6IX9INE - STOOPID FT. BOBBY SHMURDA (Official Music Video)' => 'https://www.youtube.com/watch?v=VDa5iGiPgGs',
214
+ "Limp Bizkit - Rollin' (Air Raid Vehicle)" => 'https://www.youtube.com/watch?v=RYnFIRc0k6E',
215
+ 'Limp Bizkit - Rollin\' lyrics' => 'https://www.youtube.com/watch?v=fsDL2w5HQso',
216
+ '6IX9INE "Kooda" (WSHH Exclusive - Official Music Video)' => 'https://www.youtube.com/watch?v=yz7Cn3pHibo',
217
+ '50 Cent - Candy Shop (BigJerr Trap Remix)' => 'https://www.youtube.com/watch?v=MkS9ITVUTkA',
218
+ 'Fort Minor - "Remember The Name" (Lyric Video)' => 'https://www.youtube.com/watch?v=bbPNVEB8O7E',
219
+ '2Pac - Time to Die ( Ft. Biggie Smalls ) - Gangsta Video' => 'https://www.youtube.com/watch?v=LTZGb8b6m24',
220
+ 'MD Dj - Follow Me Down (Original Mix)' => 'https://www.youtube.com/watch?v=3gbN7b_aaSY',
221
+ 'The Rubberbandits - Horse Outside' => 'https://www.youtube.com/watch?v=ljPFZrRD3J8',
222
+ 'All Eyez On Me' => 'https://www.youtube.com/watch?v=zSzaplTFagQ',
223
+ 'Matisyahu - King Without A Crown (Live from Stubb\'s)' => 'https://www.youtube.com/watch?v=dsFpUW48Tnc',
224
+ 'Theo de Raadt (ruBSD 2013)' => 'https://www.youtube.com/watch?v=OXS8ljif9b8',
225
+ '1ROOTBUN UP THE SESS mpeg' => 'https://www.youtube.com/watch?v=QA1VGVp6FHg',
226
+ '1ROOT RED RED' => 'https://www.youtube.com/watch?v=B2z4L5lb2uw',
227
+ 'Roy Keane - The Real Captain Fantastic.flv' => 'https://www.youtube.com/watch?v=BanakGjO7ps',
228
+ 'Paul Scholes - The Einstein of football by @RedDevil_Studio' => 'https://www.youtube.com/watch?v=JOPD32DLs38',
229
+ 'Goldeneye 007 Opening Theme with Lyrics' => 'https://www.youtube.com/watch?v=n1W6sddh4N4',
230
+ 'Oasis Wonderwall Lyrics' => 'https://www.youtube.com/watch?v=Y7I1nCcwJP0',
231
+ 'ソ連軍軍歌 「我ら人民の軍」 МЫ - АРМИЯ НАРОДА' => 'https://www.youtube.com/watch?v=RuAE7gPUmGQ',
232
+ 'Bob Marley - Don\'t worry be Happy' => 'https://www.youtube.com/watch?v=L3HQMbQAWRc',
233
+ 'ZHR & BatL - Stay (Official Video)' => 'https://www.youtube.com/watch?v=e2lo3lqRhdE',
234
+ 'The Last Of The Mohicans End Scene(HD)' => 'https://www.youtube.com/watch?v=q8ZisDHg6v0',
235
+ 'In the Name of the Father - Inmates showing their compassion' => 'https://www.youtube.com/watch?v=EalRRJp9hOQ',
236
+ 'Chief Keef - Love Sosa | Dir. @DGainzBeats' => 'https://www.youtube.com/watch?v=YWyHZNBz6FE',
237
+ 'Reach Eargasm - La Vie (Original Mix) /Steve Jobs/' => 'https://www.youtube.com/watch?v=CyzdOtyYnng',
238
+ 'PHIL LYNOTT SARAH LYRICS-HQ' => 'https://www.youtube.com/watch?v=jiTPKDv0z18',
239
+ 'Kasabian - Days Are Forgotten (NME Awards 2012)' => 'https://www.youtube.com/watch?v=GJTLQIvifAc',
240
+ 'Girls Aloud - Sound of The Underground - On Screen Lyrics' => 'https://www.youtube.com/watch?v=I8oHHGxrNus',
241
+ 'Местный (ГАМОРА) & DAROM DABRO - Всей толпой (2018)' => 'https://www.youtube.com/watch?v=npeNVyWg_yQ',
242
+ 'Ayatullah Khamenei Prayer of Spiritual' => 'https://www.youtube.com/watch?v=EZ0sIPmB5xA',
243
+ 'Sting - Shape Of My Heart (lyrics)' => 'https://www.youtube.com/watch?v=pm3rDbXbZRI',
244
+ 'Сережа Местный - ЧИСТОGUN (Новинка 2018)' => 'https://www.youtube.com/watch?v=uG7lpXOQ9d8',
245
+ 'Do you remember? Phoenix arcade game.' => 'https://www.youtube.com/watch?v=5FCFVdDmV8U',
246
+ 'Johnny Cash Reads The New Testament: Matthew Chapter 4' => 'https://www.youtube.com/watch?v=dt57eP_MxO0',
247
+ 'We Were Soldiers (2002)- NVA keep attacking' => 'https://www.youtube.com/watch?v=nvx9o8_QJTU',
248
+ 'Intense War Scene - Broken Arrow! We Were Soldiers (2002)' => 'https://www.youtube.com/watch?v=KESpSi4JTuc&t=8s',
249
+ 'We Were Soldiers - Final Battle Scene' => 'https://www.youtube.com/watch?v=fuaSi-H0oGY',
250
+ 'Black Hawk Down Sgt Eversmann\'s Final Speech' => 'https://www.youtube.com/watch?v=t4YnPFsvSqs',
251
+ 'Black Hawk Down Sgt Eversmann\'s Final Speech' => 'https://www.youtube.com/watch?v=t4YnPFsvSqs',
252
+ 'Matisyahu - Jerusalem' => 'https://www.youtube.com/watch?v=GYr4Fz14C6w',
253
+ 'Phil Lynott - Last TV interview, December 1985' => 'https://www.youtube.com/watch?v=-sR61Nu6FqE',
254
+ 'Bob Marley - Get Up Stand Up (Banx & Ranx Remix)' => 'https://www.youtube.com/watch?v=gQJcgY48gMQ',
255
+ 'Roy Keane - The Real Captain Fantastic.flv' => 'https://www.youtube.com/watch?v=BanakGjO7ps',
256
+ 'Fort Minor - "Remember The Name" (Lyric Video)' => 'https://www.youtube.com/watch?v=bbPNVEB8O7E',
257
+ 'Steve Miller Band - Abracadabra (12" Version) (Vinyl)' => 'https://www.youtube.com/watch?v=YqloCj1ZNSw',
258
+ 'JJ - "Still D.R.E." Remix' => 'https://www.youtube.com/watch?v=IwTKe5rGWjk',
259
+ 'Breaking Bad - Better Call Saul | Hank Gets Pwned' => 'https://www.youtube.com/watch?v=H-qsgIchX84',
260
+ 'The Frames - Lay Me Down' => 'https://www.youtube.com/watch?v=4d5ZwrkLtiE',
261
+ 'Paul Scholes -The Midfield Maestro - Analysed' => 'https://www.youtube.com/watch?v=_1NRF8x-CjY',
262
+ '"Better Call Saul" Breaking Bad": Fatty Fat Fat' => 'https://www.youtube.com/watch?v=3F2oO98C6Nw',
263
+ 'DMX Where the Hood At Uncensored' => 'https://www.youtube.com/watch?v=IIeSGUK-Lyo',
264
+ 'Die Antwoord - Enter The Ninja (Explicit Version)' => 'https://www.youtube.com/watch?v=cegdR0GiJl4',
265
+ 'Coolio - Gangsta\'s Paradise (feat L.V.)(Need For Speed Edit.)(HubertGT Remake)' => 'https://www.youtube.com/watch?v=m6gWJXhpUmI',
266
+ 'Biz - Petrunko | Dubai mafia' => 'https://www.youtube.com/watch?v=mbUCvX29O3Y',
267
+ 'Surat Al-Mutaffifin (The Defrauding) | Mishary Rashid Alafasy | سورة المطففين' => 'https://www.youtube.com/watch?v=bqbBb0FIjEI',
268
+ 'Vladimir Putin Style - True Leader 2017' => 'https://www.youtube.com/watch?v=_A4MmpJV94I',
269
+ 'Im a trumpsta motherfucker' => 'https://www.youtube.com/watch?v=WhGsq9X1VZM',
270
+ 'Eminem - Without Me (Dr. Fresch Remix)' => 'https://www.youtube.com/watch?v=ca1gt85_f0o',
271
+ 'Matisyahu - One Day - Spinner (HD)' => 'https://www.youtube.com/watch?v=cXACMQtuuZI',
272
+ '2pac trust nobody 1' => 'https://www.youtube.com/watch?v=40IcK32PA8A',
273
+ '2Pac - Listen To Your Heart (2019)' => 'https://www.youtube.com/watch?v=jZOl39p-xdg',
274
+ 'Bob Marley - Is This Love' => 'https://www.youtube.com/watch?v=CHekNnySAfM',
275
+ 'The Crew' => 'https://www.youtube.com/watch?v=bbPNVEB8O7E',
276
+ '2Pac - Still Dre ft. Eazy E (2TenRecords Remix)' => 'https://www.youtube.com/watch?v=7PX1-wr6u1Q',
277
+ 'Dope - Die Mother F cker Die (Lyrics)' => 'https://www.youtube.com/watch?v=FxLcmTCtvUQ',
278
+ 'EMINEM - Mama I\'m a Criminal [ ft. 2PAC & NAS ] #NEW 2018' => 'https://www.youtube.com/watch?v=c5B8HRA09aw',
279
+ 'Surat Ad-Duha (The Morning Hours) | Mishary Rashid Alafasy | مشاري بن راشد العفاسي | سورة الضحى' => 'https://www.youtube.com/watch?v=U22bA-lsCX0',
280
+ '6IX9INE - 911 ft. Chris Brown (OFFICIAL MUSIC VIDEO) #6IX9INE #ChrisBrown' => 'https://www.youtube.com/watch?v=voGcz5luEwI',
281
+ 'Matisyahu - Jerusalem (Out Of Darkness Comes Light) (Video)' => 'https://www.youtube.com/watch?v=H8ULIw0Zgaw',
282
+ 'Windtalkers All Artillery Scene' => 'https://www.youtube.com/watch?v=vfcwkHIJIQk',
283
+ 'WindTalkers Japanese Ambush *HD*' => 'https://www.youtube.com/watch?v=pJ96A8yWKZ0',
284
+ 'The Last Samurai 末代武士 (The final emperor scene)' => 'https://www.youtube.com/watch?v=yx5aWtDZcTE',
285
+ 'Eminem - Venom (Official Music Video)' => 'https://www.youtube.com/watch?v=8CdcCD5V-d8',
286
+ 'Girls Aloud - Sound of The Underground - On Screen Lyrics' => 'https://gitlab.com/trebor8/pry-send_tweet.rb/commit/0500a17e9fdd519cabe263faf3f9c93857b84d16',
287
+ '2Pac - Unforgettable Ft. French Montana & Swae Lee (Remix)' => 'https://www.youtube.com/watch?v=DyzST8VqEIc',
288
+ 'Busta Rhymes - H.O.L.L.A / X5M vs ML63 (LIMMA)' => 'https://www.youtube.com/watch?v=DiSgkXDhSg8',
289
+ '6ix9ine "KIKA" ft Tory Lanez (Audio Oficial)' => 'https://www.youtube.com/watch?v=Q3Bvp21y1fs',
290
+ 'Electric Six - "Danger! High Voltage" (Hi Res)' => 'https://www.youtube.com/watch?v=2a4gyJsY0mc',
291
+ 'Born Slippy - Underworld (Trainspotting Soundtrack!)' => 'https://www.youtube.com/watch?v=qrR1fVh-A4E',
292
+ '2Pac - Ms. Jackson (Ft. OutKast) Remix 2018' => 'https://www.youtube.com/watch?v=Y9rImWkp6As',
293
+ 'Daft Punk - Get Lucky (vinyl)' => 'https://www.youtube.com/watch?v=U-GamX1R_bM',
294
+ 'Electric Six - "Danger! High Voltage" (Hi Res)' => 'https://www.youtube.com/watch?v=2a4gyJsY0mc',
295
+ 'WindTalkers - The End' => 'https://www.youtube.com/watch?v=UXtU2iUUGJE',
296
+ 'Born Slippy - Underworld (Trainspotting Soundtrack!)' => 'https://www.youtube.com/watch?v=qrR1fVh-A4E',
297
+ 'I\'m a sheikh | Arabic | Ethnic | Trap beat | Instrumental' => 'https://www.youtube.com/watch?v=6g2-_72W4zs',
298
+ 'We Were Soldiers Scenes' => 'https://www.youtube.com/watch?v=abFAhCtUyMM',
299
+ 'Matisyahu - Sunshine LYRICS' => 'https://www.youtube.com/watch?v=qnwd1PrgmF4',
300
+ 'Machine Gun Kelly "Rap Devil" (Eminem Diss) (WSHH Exclusive - Official Music Video)' => 'https://www.youtube.com/watch?v=Fp0BScQSSvg',
301
+ 'Machine Gun Kelly - Sail (Official Music Video)' => 'https://www.youtube.com/watch?v=3gjfHYZ873o',
302
+ 'AWOLNATION - Sail (Official Music Video)' => 'https://www.youtube.com/watch?v=tgIqecROs5M',
303
+ 'Coldplay - Fix You Lyrics' => 'https://www.youtube.com/watch?v=aK3TROzVRiE',
304
+ 'Eminem - I\'m Sorry! (Ft. 2Pac) HQ' => 'https://www.youtube.com/watch?v=lUFdZMHgAsQ',
305
+ 'The Rolling Stones - Sympathy For The Devil (Official Lyric Video)' => 'https://www.youtube.com/watch?v=GgnClrx8N2k',
306
+ 'Wild Turkey Surprise Bugs Bunny and Taz Full Clip HD' => 'https://www.youtube.com/watch?v=GgnClrx8N2k',
307
+ 'Red Hot Chili Peppers - Under The Bridge [Official Music Video]' => 'https://www.youtube.com/watch?v=GLvohMXgcBo',
308
+ 'Eminem - Venom (Official Music Video)' => 'https://www.youtube.com/watch?v=8CdcCD5V-d8',
309
+ 'Hozier Foreigner\'s God lyrics' => 'https://www.youtube.com/watch?v=8Wy15IvvQxQ',
310
+ 'King Without A Crown - Matisyahu (Lyrics)' => 'https://www.youtube.com/watch?v=fJiJJsxDfJM',
311
+ 'Johnny Cash Reads The New Testament: Matthew Chapter 2' => 'https://www.youtube.com/watch?v=DSeYjhSCCa0',
312
+ 'Vinnie Paz - Same Story (My Dedication) With Lyrics' => 'https://www.youtube.com/watch?v=VhdHwphvhxU',
313
+ 'Billy Idol Rebel Yell Lyrics' => 'https://www.youtube.com/watch?v=TGkrdiyKe4I',
314
+ 'Johnny 5 - I Need A Hero' => 'https://www.youtube.com/watch?v=POxMp61Ksbk',
315
+ 'Johnny 5 - NO DISASSEMBLE!' => 'https://www.youtube.com/watch?v=1uwkuQfTmdM',
316
+ 'Vinnie Paz "Is Happiness Just A Word?" feat. Yes Alexander - Official Video' => 'https://www.youtube.com/watch?v=0eSfcUzGTdk',
317
+ 'DMX - Lord give me a sign' => 'https://www.youtube.com/watch?v=0eSfcUzGTdk',
318
+ 'DMX Lord give me a sign lyrics' => 'https://www.youtube.com/watch?v=DE9mc0XcFAs',
319
+ 'Paul Scholes vs Rest of the World XI (UNICEF Charity Match) HD 720p - English Commentary' => 'https://www.youtube.com/watch?v=Oa1KPDbaE00',
320
+ 'We Were Soldiers Danger Close' => 'https://www.youtube.com/watch?v=1sxIhklBXxc',
321
+ 'DMX - X Gon\' Give It To Ya' => 'https://www.youtube.com/watch?v=fGx6K90TmCI',
322
+ 'Machine Gun Kelly - Rap Devil (Eminem Diss) (Lyrics)' => 'https://www.youtube.com/watch?v=8VQ4x6P9L3o',
323
+ 'Toto - Africa (Vinyl)' => 'https://www.youtube.com/watch?v=bQbMn3vWBz0',
324
+ 'Denis Leary - Asshole (Uncensored Version)' => 'https://www.youtube.com/watch?v=UrgpZ0fUixs',
325
+ 'Schizophrenia: Gerald, Part 1' => 'https://www.youtube.com/watch?v=gGnl8dqEoPQ',
326
+ 'Kanye West & Lil Pump ft. Adele Givens - "I Love It" (Official Music Video)' => 'https://www.youtube.com/watch?v=cwQgjq0mCdE',
327
+ '✵♛НЕ.KURILI – Всюду врут✵♛' => 'https://www.youtube.com/watch?v=CbdEsE2V3TY',
328
+ 'Matisyahu - Jerusalem' => 'https://www.youtube.com/watch?v=GYr4Fz14C6w',
329
+ 'Python has a brilliant concurrency model (same as Ruby), so do we need guilds and the other nonsense?' => 'https://www.youtube.com/watch?v=qrR1fVh-A4E',
330
+ 'I like green threads for concurrency, and fork() syscall for parallelism. Enough abstractions!' => 'https://www.youtube.com/watch?v=2a4gyJsY0mc',
331
+ 'Chris Rea - On The Beach LP' => 'https://www.youtube.com/watch?v=3OzRC9RS4z4',
332
+ 'Ray Parker JR. - Ghostbusters (Vinyl)' => 'https://www.youtube.com/watch?v=wK2l1bj8fKY',
333
+ 'Men At Work - Who Can It Be Now? (Slayd5000)' => 'https://www.youtube.com/watch?v=yFIl5KML7vQ',
334
+ 'Roy Keane - The Real Captain Fantastic.flv' => 'https://www.youtube.com/watch?v=BanakGjO7ps',
335
+ 'Denis Leary - Asshole (Uncensored Version)' => 'https://www.youtube.com/watch?v=UrgpZ0fUixs',
336
+ 'Johnny Cash Reads The New Testament: Matthew Chapter 28' => 'https://www.youtube.com/watch?v=SwXWwPTTRCA',
337
+ 'This Was The Summer Of Hardstyle 2013' => 'https://www.youtube.com/watch?v=kQko_qnKoW4',
338
+ 'A recession is overdue in Spain' => 'https://www.youtube.com/watch?v=NMjnmcmWjBU',
339
+ 'I am returning to where I came from (The Netherlands)' => 'https://www.youtube.com/watch?v=T_28kNGL5Ls',
340
+ 'Basque Country supporting Catalonia independence' => 'https://www.youtube.com/watch?v=9kXl332I9ZQ',
341
+ 'We Were Soldiers Air Assault Scenes' => 'https://www.youtube.com/watch?v=2qk4ZldMp_U',
342
+ 'We Were Soldiers - Jack Geoghegan death scene' => 'https://www.youtube.com/watch?v=-lTwk2Oh9Ek',
343
+ 'Matisyahu - Jerusalem' => 'https://www.youtube.com/watch?v=GYr4Fz14C6w',
344
+ 'Men At Work - Down Under [Vinyl]' => 'https://www.youtube.com/watch?v=1C5xk1GGRO0',
345
+ 'Electric Six - "Danger! High Voltage" (Hi Res)' => 'https://www.youtube.com/watch?v=2a4gyJsY0mc',
346
+ 'Rare Irish Weapons of The Trouble Conflict : 1968 to 1998' => 'https://www.youtube.com/watch?v=8UuJkBsh0BI',
347
+ '2pac- Ghetto Gospel Lyrics' => 'https://www.youtube.com/watch?v=ZDiX9wwo670',
348
+ 'King Of Spain thinks he can bully Vikings and he didn\'t expect this...' => 'https://www.youtube.com/watch?v=jj2gKyxcTew',
349
+ 'CCR-Fortunate Son.' => 'https://www.youtube.com/watch?v=N7qkQewyubs',
350
+ 'Martin Cahill (A General) - The Beit Art Heist' => 'https://www.youtube.com/watch?v=r7zn7bjKnoI',
351
+ 'Chief Keef - Colors (Official Screen Lyrics)' => 'https://www.youtube.com/watch?v=PvsC5ijT70A',
352
+ 'Hazrat Fatima (as) Khutba-3 at masjid Kufa' => 'https://www.youtube.com/watch?v=s-2CP5ozHNQ',
353
+ 'We Must Fight - President Reagan (TyDale\'s Version)' => 'https://www.youtube.com/watch?v=JDVT-8tUfiE',
354
+ 'Facebook' => 'https://www.youtube.com/watch?v=bEoDSTBY_Y4',
355
+ 'MARTIKA - TOY SOLDIERS (vinyl)' => 'https://www.youtube.com/watch?v=k_y8he370eY',
356
+ 'Secret agents are expected to do what it takes to stay alive' => 'https://www.youtube.com/watch?v=_Vj092UgKwQ',
357
+ 'Secret agents sometimes fall in love' => 'https://www.youtube.com/watch?v=3e59iAcKuOQ',
358
+ 'Point of no return' => 'https://www.youtube.com/watch?v=9J7yK1TPkDo',
359
+ 'Red Hot Chili Peppers - Give It Away (Lyrics)' => 'https://www.youtube.com/watch?v=exCEcmLw-Hc',
360
+ 'Ronald Regan Patriotic Speech' => 'https://www.youtube.com/watch?v=GiuFzpl28io',
361
+ 'Portugal. The Man - Evil Friends [Official Music Video]' => 'https://www.youtube.com/watch?v=-zpBbrXLxP4',
362
+ 'There is a lot of bacon in Ireland, the Gardai are animals in my farm now' => 'https://www.youtube.com/watch?v=a9TYriBxuYQ',
363
+ 'Martin Garrix - Animals (Official Video)' => 'https://www.youtube.com/watch?v=gCYcHz2k5x0',
364
+ 'Reagan - Peace Through Strength' => 'https://www.youtube.com/watch?v=DWYrcnehito',
365
+ 'Manchester United vs AC Milan 3-2 - UCL 2006/2007 - Highlights (English Commentary)' => 'https://www.youtube.com/watch?v=ObSkfAUlLUQ',
366
+ 'Toy Soldiers -12inch Simple Long Version- Martika' => 'https://www.youtube.com/watch?v=i9sTyxn8XGo',
367
+ 'bob marley - natural mystic lyrics' => 'https://www.youtube.com/watch?v=cYndqo_AJQQ',
368
+ 'Short circuit 2 - No. 5 Arrives' => 'https://www.youtube.com/watch?v=HVtojNukkA0',
369
+ 'Manchester United 3-1 Chelsea (2010 Community Shield) | Goals & Highlights' => 'https://www.youtube.com/watch?v=vRecQYI9_kM',
370
+ 'nirvana rape me lyrics' => 'https://www.youtube.com/watch?v=X0ecXz0fxOY',
371
+ 'Liverpool vs Real Madrid 4-0 - UCL 2008/2009 - Highlights (English Commentary)' => 'https://www.youtube.com/watch?v=Ael2imtRPkk',
372
+ '🐡' => 'https://www.youtube.com/watch?v=1tGO1Y4FGpI',
373
+ 'The Wisdom Of Bruce Lee "To Learn To Die, Is To Be Liberated From It"' => 'https://www.youtube.com/watch?v=m5xj2bELXek',
374
+ '6IX9INE - STOOPID FT. BOBBY SHMURDA (Official Music Video)' => 'https://www.youtube.com/watch?v=VDa5iGiPgGs',
375
+ 'CRuby' => 'https://www.youtube.com/watch?v=H4YRPdRXKFs',
376
+ 'To write in C, is to think in C, the Unix way.' => 'https://www.youtube.com/watch?v=DiSgkXDhSg8',
377
+ 'Reagan - Peace Through Strength' => 'https://www.youtube.com/watch?v=DWYrcnehito',
378
+ 'No Doubt - Don\'t Speak' => 'https://www.youtube.com/watch?v=TR3Vdo5etCQ',
379
+ 'Jesse Pinkman\'s Speech - Why Not Self-Acceptance?' => 'https://www.youtube.com/watch?v=njuIKGNcTVE',
380
+ 'Fort Minor - "Remember The Name" (Lyric Video)' => 'https://www.youtube.com/watch?v=bbPNVEB8O7E&t=38s',
381
+ 'Gorilla Zoe - Real Motherfucker ft. Boyz N Da Hood' => 'https://www.youtube.com/watch?v=k9dMdbUAi0c',
382
+ 'Forrest Gump long run scene' => 'https://www.youtube.com/watch?v=QgnJ8GpsBG8',
383
+ '"We Were Soldiers" Reporter Scene' => 'https://www.youtube.com/watch?v=JyZw9DoU00c',
384
+ 'Tina Turner - Golden Eye (HD)' => 'https://www.youtube.com/watch?v=4hGQ97tCTOs',
385
+ 'Rich The Kid - New Freezer ft. Kendrick Lamar (Bass Boosted)' => 'https://www.youtube.com/watch?v=VDJKBueqW3c',
386
+ 'Highlights: Liverpool Legends 5-5 FC Bayern Legends | Alonso, Gerrard, Kuyt and more' => 'https://www.youtube.com/watch?v=njiW0R1W8GI',
387
+ 'Kid CuDi Mr Rager Lyrics' => 'https://www.youtube.com/watch?v=PMPC2jY27rw',
388
+ 'Mr. Rager-Kid Cudi' => 'https://www.youtube.com/watch?v=rCLBGY0huVE',
389
+ 'Fast and furious [rollin rollin] R.I.P Paul Walker' => 'https://www.youtube.com/watch?v=BgEHsif2yQ0',
390
+ 'DaBaby - Walker Texas Ranger (OFFICIAL VIDEO)' => 'https://www.youtube.com/watch?v=nXld3i2B8Zk',
391
+ 'Walker Texas Ranger S8 Opening G.I.Joe Style' => 'https://www.youtube.com/watch?v=qORcsHf8t1M',
392
+ 'Breaking Bad: Huell - Reasonably' => 'https://www.youtube.com/watch?v=T7rXeDArhg0',
393
+ 'Oz Gangs - The Irish' => 'https://www.youtube.com/watch?v=2FoGMaqkDV8',
394
+ 'Historically speaking, what history do Brazil and the USA have? ' \
395
+ 'Is it a story at all? Is it a story about loyalty? Do the Irish ' \
396
+ 'deserve to be second class citizens, after dying in all your stupid wars? ' \
397
+ 'For the UK and USA alike. Maybe we should fight for Russia now. ' => 'https://www.youtube.com/watch?v=1F3al6cluWo',
398
+ 'Probably time for all those Brazilians in Ireland to return home. Overstayed your welcome.' => 'https://www.youtube.com/watch?v=1OEAYjo606A',
399
+ '6IX9INE "Billy" (WSHH Exclusive - Official Music Video)' => 'https://www.youtube.com/watch?v=LJjsm6CVsG8',
400
+ 'Michael Collins eliminates "Cairo Gang"' => 'https://www.youtube.com/watch?v=l-L3zeCNzH8',
401
+ '2Pac - Real Talk (2019)' => 'https://www.youtube.com/watch?v=_3LuY9isL_Y',
402
+ 'Babyshambles - fuck forever lyrics' => 'https://www.youtube.com/watch?v=MOJhmVYv3mw',
403
+ 'Howie' => 'https://www.youtube.com/watch?v=RgKAFK5djSk',
404
+ 'The Sound of Silence (Original Version from 1964)' => 'https://www.youtube.com/watch?v=4zLfCnGVeL4',
405
+ 'SWAY - STILL SPEEDIN\' (With Lyrics) OUT NOW!!!!' => 'https://www.youtube.com/watch?v=tRldCYkU8nA',
406
+ 'Eric Bana\'s best scene in Black Hawk Down' => 'https://www.youtube.com/watch?v=t_ZpneN-seU',
407
+ 'The King Of Spain is a bitch who sleeps with brazilian men from Madrid' => 'https://www.youtube.com/watch?v=tRldCYkU8nA',
408
+ 'Take me home, home to The Netherlands, and let me sink the Kingdom Of Spain once and for all' => 'https://www.youtube.com/watch?v=arZCCrnjDtA',
409
+ 'My human friend' => 'https://www.youtube.com/watch?v=VhdHwphvhxU',
410
+ 'Martika - 01 Toy Soldiers (Polystyrene 45 R.P.M.)' => 'https://www.youtube.com/watch?v=c7cy13PS4_A',
411
+ '2pac- Ghetto Gospel Lyrics' => 'https://www.youtube.com/watch?v=ZDiX9wwo670',
412
+ 'Arab Trappin Vol 1 (Allahu Trapbar Edition) [FreeMusicPromotion]' => 'https://www.youtube.com/watch?v=IRAMzWYfxzQ',
413
+ '2Pac - Thug outta Prison (Ft. Eazy E & Machine Gun kelly) R.I.P MGK' => 'https://www.youtube.com/watch?v=VhtGp2wIPXs',
414
+ %q[Nate Diaz: "I'm not surprised mother fuckers"] => 'https://www.youtube.com/watch?v=KFhSKp-RQ20',
415
+ 'Matisyahu - Sunshine LYRICS' => 'https://www.youtube.com/watch?v=qnwd1PrgmF4',
416
+ 'Return to Mogadishu: Remembering Black Hawk Down' => 'https://www.youtube.com/watch?v=bTfMpqOXANE',
417
+ 'Immortal Technique - Point of No Return w/ Lyrics' => 'https://www.youtube.com/watch?v=9J7yK1TPkDo',
418
+ %q[Gary Neville: Why Scholes is the best player I've played with] => 'https://www.youtube.com/watch?v=uFW18LKKlto',
419
+ %q[USB-1 was functional, it didn't have to become smaller. The headphone jack was a standard, it didn't have to become a battleground.
420
+ Apple are repeating the exact same mistakes as Microsoft did. Jony Ive is the new Bill Gates, who openly admits, he does not understand
421
+ the technology he uses. There is a passage from The Holy Scriptures about acting with a lack of understanding.].each_line.map(&:strip).join => 'https://www.youtube.com/watch?v=0HDdjwpPM3Y',
422
+ 'Portuguese Paratroopers In Heavy Combat With African Rebels In Central African Republic' => 'https://www.youtube.com/watch?v=knqnPnlflLQ',
423
+ 'ARAB TRAPPIN VOL 4 [Reupload + Channel Restart]' => 'https://www.youtube.com/watch?v=BNpyrKpRBHw',
424
+ %q[Panic! At The Disco: Emperor's New Clothes [OFFICIAL VIDEO]] => 'https://www.youtube.com/watch?v=7qFF2v8VsaA',
425
+ %q[Up The Ra. Ra. Ra. Irish Republican Army.] => %q[https://www.youtube.com/watch?v=LJjsm6CVsG8],
426
+ %q[Haterade x Skellism - TALIBAN] => %q[https://www.youtube.com/watch?v=w181DV4iLhU],
427
+ %q[That's a good idea Koichi, an in-memory temporary file system would be perfect for the FreeBSD VM.] => 'https://www.youtube.com/watch?v=yY7iGa4t9-I',
428
+ %q[Senso☯ Trap & Bass Japanese Type Beat ☯ Lofi HipHop Mix] => 'https://www.youtube.com/watch?v=ZJRjwViJJDc',
429
+ %q[The Last Samurai 末代武士 (The final emperor scene)] => 'https://www.youtube.com/watch?v=yx5aWtDZcTE',
430
+ %q[virtus] => 'https://www.youtube.com/watch?v=BnmzpbT1wJc',
431
+ %q[Martin Garrix - Animals (Official Video)] => 'https://www.youtube.com/watch?v=gCYcHz2k5x0',
432
+ 'Las 9 Camionetas mas Lujosas, Rapidas y Costosas del Mundo!!' => 'https://www.youtube.com/watch?v=GRmqHyQPlu4',
433
+ %q[SWAY - STILL SPEEDIN' (With Lyrics) OUT NOW!!!!] => 'https://www.youtube.com/watch?v=tRldCYkU8nA',
434
+ 'The real clonskeagh legend. Gleeson. Before I erased them. Now I am a McIntyre, tied to the IRA and ready to blow you up' => 'https://www.youtube.com/watch?v=js-Yet5kskA',
435
+ 'Central African Republic: The way of the warlord' => 'https://www.youtube.com/watch?v=3Y3u3bqx28A',
436
+ 'United in Hate: The Fight for Control in CAR' => 'https://www.youtube.com/watch?v=VoZvdCvq2iQ',
437
+ 'The Simpsons: USSR Returns' => 'https://www.youtube.com/watch?v=z77JFw2D6f8',
438
+ %q[50 Cent - In Da Club (Int'l Version)] => 'https://www.youtube.com/watch?v=5qm8PH4xAss',
439
+ %q[The Last Samurai - They are not ready] => 'https://www.youtube.com/watch?v=QE3yMEfpk6E',
440
+ %q[Common People Lyrics - Pulp (Extended version)] => 'https://www.youtube.com/watch?v=4KjAVr1WSu0',
441
+ %q[For Hannah|Jannah] => 'https://www.youtube.com/watch?v=F_y16U_je_8',
442
+ %q|Music of Morocco : Chillout & Traditional Music [1]| => 'https://www.youtube.com/watch?v=mvRQtbqLPK8',
443
+ %q|Why did the Dutch break rank, the Irish deserve no better than Soap Bar, they're far from clean| => 'https://www.youtube.com/watch?v=0EioRyzcvJo',
444
+ %q|The original telescope is a pipe, but not a crack pipe, that came after the telescope| => 'https://www.youtube.com/watch?v=k9dMdbUAi0c',
445
+ %q|Observing a jquery riddled with XSS issues on the frontend and Rails4-5 on the backend shows us the pains of legacy, and a team too focused on backend technology. You got owned from the front.| => 'https://www.youtube.com/watch?v=25DC6v8oPxo',
446
+ %q[Rails and webpack are a bad match. Why? Because webpack leaves a manfiest file in public/packs/, which might expose admin paths and keys, etc. Is that 0day? Are all modern Rails applications vulnerable to this? I don't think Rails understands JavaScript, and should not be the ruby leaders for such tech.] => 'https://www.youtube.com/watch?v=pHIua_4T0sY',
447
+ %q|That's strange, how do General Assembly (https://generalassemb.ly) continue to benefit from my knowledge, even though i no longer work there? Stop stealing from me. PAY ME @GA.| => 'https://www.youtube.com/watch?v=-LdYXYNtPJI',
448
+ %q|Mad Irish Man| => %q|https://www.youtube.com/watch?v=j0X7nSLMV5c|,
449
+ %q|Hardwell - spaceman| => %q|https://www.youtube.com/watch?v=Z0vZJi2qfuo|,
450
+ %q|Israel says ..| => %q|https://www.youtube.com/watch?v=qnwd1PrgmF4|,
451
+ %q|Maître Gims - Est-ce que tu m'aimes (FlyBoy Remix)| => %q|https://www.youtube.com/watch?v=XYUjMnhQZfQ|,
452
+ %q|Bob Marley - Jamming (Banx & Ranx Remix)| => %q|https://www.youtube.com/watch?v=ovQErBIyR6A|,
453
+ %q|Die Antwoord - Zef Side (Official)| => %q|https://www.youtube.com/watch?v=Q77YBmtd2Rw|,
454
+ %q|'I FINK U FREEKY' by DIE ANTWOORD (Official)| => %q|https://www.youtube.com/watch?v=8Uee_mcxvrw|,
455
+ %q|Tim Tebow Song - All I Do Is Win| => %q|https://www.youtube.com/watch?v=BqIrm4H9-7I|,
456
+ %q|Dan + Shay - Speechless (Icon Video)| => %q|https://www.youtube.com/watch?v=o_bIMTtl8X8|,
457
+ %q|I'm a trumpsta motherfucker official lyric| => %q|https://www.youtube.com/watch?v=q8kRxSvAbwk|,
458
+ 'Gerry Conlon goes Crazy' => 'https://www.youtube.com/watch?v=vFTe_sXK62o',
459
+ 'The Prodigy - No Good (Start The Dance) (Official Video)' => 'https://www.youtube.com/watch?v=svJvT6ruolA',
460
+ %q[I am under an illegal wiretap by the USA government, they steal my ideas and 0day ] +
461
+ %q[then sell both to big US companies who make big money while I get small change.] => 'https://www.youtube.com/watch?v=o3UHMV3jrZk',
462
+ %q[★RUSSIAN HELL MARCH ★ - EL TERROR DE LA OTAN (Poder Militar de Rusia)] => %q|https://www.youtube.com/watch?v=T1ca52QhGr4|,
463
+ %q|The Prodigy - Firestarter (Official Video)| => %q|https://www.youtube.com/watch?v=wmin5WkOuPw|,
464
+ %q[Uncle Murda | 50 Cent | 6ix9ine | Casanova - "Get The Strap" (Official Music Video)] => %q|https://www.youtube.com/watch?v=6Flx8kEa-YE|,
465
+ %q[TerryDavis] => %q|https://www.youtube.com/watch?v=Q74tSCCZu_c|,
466
+ %q|Mexican women (like Diana), GET AWAY FROM ME.| => %q|https://www.youtube.com/watch?v=khdnv3XnooM|,
467
+ %q|Brazil| => %q|https://www.youtube.com/watch?v=TGtWWb9emYI|,
468
+ %q|Tropic Thunder (5/10) Movie CLIP - Never Go Full Retard (2008) HD| => %q|https://www.youtube.com/watch?v=X6WHBO_Qc-Q|,
469
+ %q|Bob Marley - Is This Love (Montmartre Remix)| => %q|https://www.youtube.com/watch?v=UOGnENaduDw|,
470
+ %q|Vietnam War - Jefferson Airplane Somebody To Love| => %q|https://www.youtube.com/watch?v=aa2ZtKpWcDY|,
471
+ %q|The Punchbowl| => %q|https://www.youtube.com/watch?v=js-Yet5kskA|,
472
+ %q|cr0w| => %q|https://www.youtube.com/watch?v=r74V6ihFL3w|,
473
+ %q|crowsnest| => %q|https://www.youtube.com/watch?v=2Z4m4lnjxkY|,
474
+ %q|toor (backdoor)| => %q|https://www.youtube.com/watch?v=2Z4m4lnjxkY|,
475
+ %q|I was once so naive, I thought the world worked this way| => %q|https://www.youtube.com/watch?v=tCXqm8EQtWQ|,
476
+ %q|King Faisal of saudi arabia calls for jihad then gets killed, then gets what he asked for| => %q|https://www.youtube.com/watch?v=YVWymq5zYpQ|,
477
+ %q|pry| => %q|https://www.youtube.com/watch?v=a9TYriBxuYQ|,
478
+ %q|Goodbye England's Rose (Princess Diana Tribute)| => %q|https://www.youtube.com/watch?v=SZGnZEF6-_w|,
479
+ %q|How can @google be so intelligent, but still rank low quality documentation at the top? I am talking about ruby-doc.org (low quality) vs yardoc (high quality). Do I have to write another extension to fix that, too?| => '😡',
480
+ %q|Oneroot Freeman ft dragon davy & lasconi No time fi waiste - OFFICIAL VIDEO| => %q|https://www.youtube.com/watch?v=rFYe4HL4k94|,
481
+ %q|ONE ROOT - THATS NOT THE WAY (OFFICIAL HD VIDEO)| => %q|https://www.youtube.com/watch?v=tEnCgwyvtZ4|,
482
+ %q|Copenhagen, Denmark: Christiania and Christianshavn| => %q|https://www.youtube.com/watch?v=v57JVVD6-ag|,
483
+ %q|Simple Man - Lynyrd Skynyrd - Lyrics HD| => %q|https://www.youtube.com/watch?v=sMmTkKz60W8|,
484
+ %q|Hey Jude (Remastered 2015)| => %q|https://www.youtube.com/watch?v=mQER0A0ej0M|,
485
+ %q|The Frames - Revelate with lyrics| => %q|https://www.youtube.com/watch?v=SPC0sRQbJ98|,
486
+ %q|Roy Keane - The Real Captain Fantastic.flv| => %q|https://www.youtube.com/watch?v=BanakGjO7ps|,
487
+ %q|Abracadabra| => %q|https://www.youtube.com/watch?v=dKCV8gzSlYw|,
488
+ %q|Reach Eargasm - La Vie (Original Mix) /Steve Jobs/| => %q|https://www.youtube.com/watch?v=CyzdOtyYnng|,
489
+ %q[RONALD REAGAN | One Nation Under God] => %q[https://www.youtube.com/watch?v=8-0CBP0NVeo],
490
+ %q[Vance Joy - 'Riptide' Official Video] => %q[https://www.youtube.com/watch?v=uJ_1HMAGb4k],
491
+ %q[The Inspiration of Ronald Reagan- Motivational Minute!!] => %q[https://www.youtube.com/watch?v=AR5Akmygncc],
492
+ %q[1root blazing] => %q[https://www.youtube.com/watch?v=nElYKl2w4Jw],
493
+ %q[Armin van Buuren vs Vini Vici feat. Hilight Tribe - Great Spirit (Extended Mix) 🎆 🎇] => %q[https://www.youtube.com/watch?v=yo4pmauhugo],
494
+ %q[Angèle - I Kissed A Girl (Crisologo Remix)] => %q[https://www.youtube.com/watch?v=RXaYMILuezc],
495
+ %q[Nothing but respect for Charlie, I'm very sorry.] => %q[https://www.youtube.com/watch?v=w8HdOHrc3OQ],
496
+ %q[Bob Marley - No Woman No Cry (Daniel Kim Remix)] => %q[https://www.youtube.com/watch?v=ZHM2Zka_olw],
497
+ %q[Cheb Khaled - Aïcha (Anthony Keyrouz Remix)] => %q[https://www.youtube.com/watch?v=XCAgWitD3IU],
498
+ %q[✵ с убитыми глазами..✵♛] => %q[https://www.youtube.com/watch?v=RXiy_-fB4xQ],
499
+ %q[Ric Hassani - Marry You (Deepen Groove Remix)] => %q[https://www.youtube.com/watch?v=ngv0egMpIVg],
500
+ %q[John Legend - Preach (Official Video)] => %q[https://www.youtube.com/watch?v=k0r1AJMK79g],
501
+ %q[John Legend - All of Me (Edited Video)] => %q[https://www.youtube.com/watch?v=450p7goxZqg],
502
+ %q[Gotye - Somebody That I Used To Know (feat. Kimbra) - official video] => %q[https://www.youtube.com/watch?v=8UVNT4wvIGY],
503
+ %q[johnny cash - hurt (lyrics)] => %q[https://www.youtube.com/watch?v=4ahHWROn8M0],
504
+ %q[I have a bag, and inside the bag, I have many disguises] => %q[https://www.youtube.com/watch?v=4b1wt3-zpzQ],
505
+ %q[John Newman - Love Me Again (Official Music Video)] => %q[https://www.youtube.com/watch?v=CfihYWRWRTQ],
506
+ %q[Reservoir Dogs OST-Steelers Wheel-Stuck In The Middle With You] => %q[https://www.youtube.com/watch?v=Ic7Ibl9I5CQ],
507
+ %q[You don't have to blame robert anymore, you can blame @freebsd & hello pablo@freebsd.org. If you didnt exist, you do now] => %q[https://www.youtube.com/watch?v=rs6Y4kZ8qtw],
508
+ %q[@ocyrus aka @kylebrowning from h3c never understood perl, barely understood PHP, is a racist Texan, AND, never ever better than me, so lose your spot nigger] => %q[https://www.youtube.com/watch?v=-LdYXYNtPJI],
509
+ %q[Don't recreate the wheel is terrible advice, every generation has a right to create their own wheel, only the desperate give that advice] => %q[https://www.youtube.com/watch?v=_3LuY9isL_Y],
510
+ %q[Ocyrus never knew FreeBSD, he wasn't part of that, he's just an apple faggot living on FreeBSD glory] => %q[https://www.youtube.com/watch?v=BanakGjO7ps],
511
+ %q[Yofu - Грехи ✵] => %q[https://www.youtube.com/watch?v=8p-kSe8LIic],
512
+ %q[Pascal Junior - Feelings (Original Mix)] => %q[https://www.youtube.com/watch?v=J1grvKIQF18],
513
+ %q[You delta boys are a bunch of undisciplined cowboys...] => %q[https://www.youtube.com/watch?v=0X0UEilAiwY],
514
+ %q[Xad - Free man (Original Mix)] => %q[https://www.youtube.com/watch?v=v5St2wjrlB4],
515
+ %q[ONE ROOT FREEMAN dans HIT'S TIME avec RAGUS et JEAN MI] => %q[https://www.youtube.com/watch?v=NYZVMK7wpSs],
516
+ %q[Diego Power - Losing My Baby (Original Mix)] => %q[https://www.youtube.com/watch?v=Dnc-A725L0I],
517
+ %q[Bob Marley - Jammin (Kungs Remix)] => %q[https://www.youtube.com/watch?v=Z4jqhFPL50Q],
518
+ %q[Ноггано, AK 47 - Russian Paradise] => %q[https://www.youtube.com/watch?v=Z0s1RTZUAqQ],
519
+ %q[President Trump "The Proud Commander In Chief" - VETERANS DAY TRIBUTE] => %q[https://www.youtube.com/watch?v=ssgMkF74fOI],
520
+ %q[[†] Terry Davis Drum Cover Metallica] => %q[https://www.youtube.com/watch?v=lQu-7DvtPEQ],
521
+ %q[Diana is next. Terry strikes back.] => %q[https://www.youtube.com/watch?v=rCLBGY0huVE],
522
+ %q[Anyone remember when Perl was in the base of FreeBSD? What happpened? FreeBSD removed fun languages from their base. What did OSX do? Add all of them. Wake up @FreeBSD] => %q[https://www.youtube.com/watch?v=WPauDSUnBeU],
523
+ %q[@rubygems removed my voice, i cant sign up anymore, well fuck you, you're not living on my glory anymore, i'll own all of you ] => %q[https://www.youtube.com/watch?v=-LdYXYNtPJI]
524
+ }
525
+ command '🎧', '' do
526
+ args = arg_string.split(' ')
527
+ no_dups = DISCO_BISCUITS.uniq
528
+ if %w(-g --grep).include?(args[0])
529
+ pat = args[1]
530
+ disco_biscuits = no_dups.select {|(biscuit, _)| biscuit =~ /#{pat}/i }
531
+ _pry_.pager.page disco_biscuits ?
532
+ bright_green("Results\n\n") + disco_biscuits.map{|a| a.join("\n")}.join("\n\n") :
533
+ bright_red("No match")
534
+ else
535
+ _pry_.pager.page no_dups.sample.join("\n")
536
+ end
537
+ end
538
+ alias_command 'disco-biscuits', '🎧'
539
+
540
+ command '300', '' do
541
+ _pry_.output.puts ['Chief Keef is 300 years old', 'https://www.youtube.com/watch?v=VWUg1fgYPiE'].join("\n")
542
+ end
543
+
544
+ command '8', '' do
545
+ _pry_.output.puts ['The Eight Beatitudes', 'https://www.jesuschristsavior.net/Beatitudes.html'].join("\n")
546
+ end
547
+
548
+ command '12', '' do
549
+ _pry_.output.puts ['The Guided One', 'https://en.m.wikipedia.org/wiki/Mahdi'].join("\n")
550
+ end
551
+
552
+ command '$stdout', '' do
553
+ _pry_.output.puts ["Here's to the crazy ones", 'https://stdout.io'].join("\n")
554
+ end
555
+
556
+ command 'dhh', '' do
557
+ _pry_.output.puts [%q[I'm just playing dawg, I still love you], "https://www.youtube.com/watch?v=vbDLCRflzYU"].join("\n")
558
+ end
559
+
560
+ command /rubyonrails/i, '' do
561
+ _pry_.output.puts "The problem with Ruby On Rails is that it became as big as the ego of its creator, " \
562
+ "spread like a malicious cancer until the only voice left was Rails"
563
+ end
564
+ end