├── LICENSE ├── README.md ├── index.js └── package.json /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016, NodeTogether 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any 4 | purpose with or without fee is hereby granted, provided that the above 5 | copyright notice and this permission notice appear in all copies. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 10 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 12 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 13 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # motivations 2 | > you can do it! 3 | 4 | ## usage 5 | 6 | 1. install `motivations` and save it to your `package.json`: 7 | 8 | ``` 9 | npm install motivations --save 10 | ``` 11 | 12 | 2. require it in your application 13 | 14 | ``` 15 | const motivations = require('motivations'); 16 | ``` 17 | 18 | 3. now you have a variable `motivations` that points to an array of encouraging statements! 19 | 20 | ``` 21 | console.log(motivations[0]); // prints "don't worry. no one actually knows what they're doing." 22 | ``` 23 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | "don't worry. no one actually knows what they're doing." 3 | , "this is Hard Stuff, but you can do it!" 4 | , "getting started is hard, you did it, congratulations!" 5 | , "If you can see this message it means you got it working and that's something to celebrate! ['hip','hip']!" 6 | , "you are the best around." 7 | , "nothing is ever going to keep you down!" 8 | , "computers are super hard, but you can defeat them!" 9 | , "it's okay to need a break, everyone needs one!" 10 | , "you got this." 11 | , "whoah you're pretty good at this." 12 | , "all the cats in the land bow down to your cool computer skills." 13 | , "there's a brazillion different ways to solve every problem - you only need one." 14 | , "oh, cool! check out what you just learned there!" 15 | , "learning something is the first step towards being awesome at it." 16 | , "don't be afraid to ask questions!" 17 | , "rad beans! lets try another!" 18 | , "impressive..." 19 | , "this is amazing! keep with the good work" 20 | , "you've already defeated so many obstacles to get here—keep going! you can do it." 21 | , "even the most accomplished computer people in the universe all make it up as they go along! this is okay." 22 | , "is your code a parking ticket? because it looks _fine_." 23 | , "node is cool, and so are you. :sparkles:" 24 | , "wowowowowow you've got some kick-ass node skillz." 25 | , "I can't believe what I'm seeing, you're awesome." 26 | , "I'm pretty sure you're now fully qualified fantastic human." 27 | , "looks like you're pretty much awesome now." 28 | , "omg - I'm falling head over heels for your sweet skills." 29 | , "look how far you've come! you're awesome!!" 30 | , "the best way to learn is by doing, and you are doing it good!" 31 | , "¡Lo estás haciendo muy bien!" 32 | , "keep going! you can do it!" 33 | , "mistakes are how we learn. keep making them! you're doing awesome!" 34 | , "✧・゚\: \*✧・゚\:\* you are super cool! \*\:・゚✧\*\:・゚✧" 35 | , "\✲゚。\.\(✿╹◡╹\)ノ☆\.。₀\:\*゚\✲゚\*\:₀。wow i cant believe how awesome this is" 36 | , "\"No bird soars in a calm\" - Wilbur Wright" 37 | , "Ayyyyyyy! so much WoW! very aWesome!!!" 38 | , "you finished a hard problem and learned something new. doesn't it feel great?" 39 | , "\"Nothing is impossible, the word itself says \'I\'m possible!\'\" - Audrey Hepburn" 40 | , "Never leave house without your towel." 41 | , "If 42 doesn't answer your question, try a prime number." 42 | , "i'm pretty new to this." 43 | , "You've got 99 problems but node ain't one" 44 | , "Hakuna Matata!" 45 | , "Reboot your life, everyday" 46 | , "\"May the force be with you, Node\"-JavaScript" 47 | , "Alright!! Way to go!!" 48 | , "The expert at anything, was once a beginner." 49 | , "les petit ruisseaux font les grandes rivieres" 50 | , "It's never too late!" 51 | , "Who's awesome? YOU'RE AWESOME!!!" 52 | , "did you ever know that you're my hero? you're everything i would like to be." 53 | , "charge forward!" 54 | , "one more step. you're almost there!" 55 | , "what lovely code you have!" 56 | , "Meow, you're paw-some" 57 | , "You totally did the thing!" 58 | , "Donne tout ce que tu as et dis toi que ce n'est qu'un mauvais moment à passer ! Bon courage !" 59 | , "Get to da choppah! Nao!" 60 | , "your code looks purrr-fect!" 61 | , "You're the best! You can do anything!" 62 | , "Alright , let's go" 63 | , "Don't hate, caffeinate" 64 | ]; 65 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "motivations", 3 | "version": "1.1.2", 4 | "description": "you can do it!", 5 | "main": "index.js", 6 | "author": "ag_dubs ", 7 | "license": "ISC", 8 | "repository": { 9 | "type": "git", 10 | "url": "git+https://github.com/NodeTogether/motivations.git" 11 | }, 12 | "bugs": { 13 | "url": "https://github.com/NodeTogether/motivations/issues" 14 | }, 15 | "homepage": "https://github.com/NodeTogether/motivations#readme" 16 | } 17 | --------------------------------------------------------------------------------