Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. var quotes = [
  2. 'look at old pictures to remember who I am.'
  3. 'write every thought on the paper.'
  4. 'just keep on stressing out. That’s my ritual.'
  5. 'try to think of activities that would make me feel more as a whole.'
  6. 'go to the nature, that helps me a lot to understand how “small” our problems and egos are in comparison to nature, earth and universe.'
  7. 'read the letter I wrote to myself few years ago with priorities and aims I want to reach in my life.'
  8. 'hold my knees and cry in the shower if it\’s a bad loss and sing in the shower if it\’s a good one.'
  9. 'cry until there\’s no tears left, if nothing helps I wait it out and move on until the feeling fades.'
  10. 'Freak out. Calm down. Drink. Repeat.'
  11. 'remind myself of how lucky I truly am by being healthy, fed, warm and free to choose my path.'
  12. ]
  13.  
  14. function newQuote() {
  15. var randomNumber = Math.floor(Math.random() * (quotes.length));
  16. document.getElementById('quoteDisplay').innerHTML = quotes[randomNumber];
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement