Advertisement
Guest User

Meh2015AprilFools

a guest
Apr 1st, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.28 KB | None | 0 0
  1. var sentences = [
  2. 'Frenzied fans invariably crash the servers- er, counters for their bags, or at least they did before shops started taking reservations to deal with the crowds.',
  3. 'OK, we\'ve warned you.',
  4. 'As kids who grew up on 70s, 80s, and 90s TV, we miss the lost art of the theme song.',
  5. 'We can do "Silver Spoons" karaoke at the drop of a hat, but we couldn\'t tell you a single storyline from the show.',
  6. 'And you know us: we don\'t thrill easy.',
  7. 'And it will stay in your mind for years.',
  8. 'We\'re working on adding that functionality to our site.',
  9. '(We\'re even impressed by their copywriting.)',
  10. 'It\'s probably the coolest thing about this little virtual lost-and-found bin of ours.',
  11. 'Go on. Do it. See?',
  12. 'We thought a surprise package of items \'n\' things would be enough of a thrill to keep us interested.',
  13. 'What fools we were.',
  14. 'If we insist on shoving our sales links all up in your Twitter grill, the least we could do is midwife some awesomeness into the world.',
  15. 'Spank it! Hear it cry!',
  16. 'Just remember who was here first, freshmeat, or we\'ll cut you.',
  17. 'We will cut you so bad.',
  18. 'As they freely admit, they don\'t really get it.',
  19. 'It\'s because every day brings with it a new squirrel to chase, a new itch to scratch, a new butt to sniff.',
  20. 'Dogs love like they\'ve never been hurt.',
  21. 'He left the team in 2003 to devote more time to his collection of replica muskets.',
  22. 'You\'d just as soon microwave all your meals at 7-11 anyway.',
  23. 'Settle in with an oil drum full of chili for that 62-hour Babylon 5 marathon.',
  24. 'Sometimes it just sucks.',
  25. 'It\'s not some awful Chris Farley movie.',
  26. 'If you have to stab something, or someone, even once, your life has probably gone very, very wrong.',
  27. 'I know "we" decided we were using our vacation next year to attend your nephew\'s 5th-grade graduation in Indianapolis.',
  28. 'A Florida man is severely injured when he gets an alligator high on bath salts in the lavatory of a Ruby Tuesday.',
  29. 'Gaze into our liquid crystal ball...',
  30. 'But it gets old by lunchtime.',
  31. 'The people have spoken! And so has the money.',
  32. 'If you want to play pretend record mogul, there are plenty of other places where you can go throw your money away.',
  33. 'Please, serious industry requests only.',
  34. 'It sounds unlikely at best, disgusting at worst.',
  35. 'What\'s the difference between "a hobby" and "a problem"?',
  36. 'Tragically wasting your life is what your job is for.',
  37. 'All of these exciting innovations have one boring fact in common.',
  38. 'What happens next depends on whether you\'re an idiot or a genius.',
  39. 'We cannot, however, vouch for his credentials as a doctor.',
  40. 'Maybe we just can\'t let ourselves be happy.',
  41. 'Teach us how to fall in love all over again.',
  42. 'Oyster crackers! Who panic-buys oyster crackers?',
  43. 'A vote for optimism. A gesture of hope.',
  44. 'OK, we\'ve done our share to educate consumers today. When\'s lunch?',
  45. 'First, let\'s check for low-hanging fruit.',
  46. 'And there\'s nothing more boring than a good deal.',
  47. 'It\'s a battlefield. It\'s a dystopia. It\'s hostile territory.',
  48. 'Opt out of the system. Answer to no one.',
  49. 'WARNING: IT\'S NOT THAT SIMPLE.',
  50. 'Al Capone was right.',
  51. 'Because it\'s tragic to waste the few measly decades you have on this Earth afraid to love anything unless the cool kids say it\'s OK.',
  52. 'We love it when people buy stuff from us.',
  53. 'And to prove it, here\'s a lame deal that won\'t make us any money.',
  54. 'What will you do, free people? Will you fight... or will you run?',
  55. 'It\'s the best-kept secret in Hollywood.',
  56. 'Then it\'ll be the people of the future\'s problem.',
  57. 'One chip and your fingertips are stained orange for days.',
  58. 'Or you\'re trying to be a good hip citizen and ride your bike to the office, but your greasy chain pops off.',
  59. 'Sorry, early adopters.',
  60. 'You have memories nobody can ever take away.',
  61. 'If you\'re not cheap, crafty, busy, savvy, and lazy, are you sure you\'re in the right place?'
  62. ];
  63.  
  64. function getRandomSentence() {
  65. var index = Math.floor(Math.random() * sentences.length);
  66. var sentence = sentences[index];
  67.  
  68. sentences.splice(index, 1);
  69.  
  70. return sentence;
  71. }
  72.  
  73. window.onload = function() {
  74. var html = $('.story').html();
  75.  
  76. html = html.replace('Al Capone was right.', getRandomSentence());
  77. html = html.replace('WARNING: IT\'S NOT THAT SIMPLE.', getRandomSentence());
  78. html = html.replace('If you want to play pretend record mogul, there are plenty of other places where you can go throw your money away.', getRandomSentence());
  79. html = html.replace('Or you\'re trying to be a good hip citizen and ride your bike to the office, but your greasy chain pops off.', getRandomSentence());
  80. html = html.replace('You\'d just as soon microwave all your meals at 7-11 anyway.', getRandomSentence());
  81. html = html.replace('A Florida man is severely injured when he gets an alligator high on bath salts in the lavatory of a Ruby Tuesday.', getRandomSentence());
  82. html = html.replace('It\'s not some awful Chris Farley movie.', getRandomSentence());
  83. html = html.replace('If you have to stab something, or someone, even once, your life has probably gone very, very wrong.', getRandomSentence());
  84. html = html.replace('What will you do, free people? Will you fight... or will you run?', getRandomSentence());
  85. html = html.replace('Then it\'ll be the people of the future\'s problem. ', getRandomSentence());
  86. html = html.replace('Tragically wasting your life is what your job is for.', getRandomSentence());
  87. html = html.replace('Spank it! Hear it cry!', getRandomSentence());
  88. html = html.replace('Settle in with an oil drum full of chili for that 62-hour Babylon 5 marathon.', getRandomSentence());
  89. html = html.replace('The people have spoken! And so has the money.', getRandomSentence());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement