forked from ysabogal88/Scratch-Project-axolotl
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquotes.cjs
More file actions
64 lines (63 loc) · 1.92 KB
/
quotes.cjs
File metadata and controls
64 lines (63 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// quotes.cjs
module.exports = [
{
quote: "The cosmos is within us. We are made of star-stuff.",
author: "Carl Sagan"
},
{
quote: "You – you alone will have the stars as no one else has them.",
author: "Antoine de Saint-Exupéry"
},
{
quote: "Space is big. Really big. You just won’t believe how vastly, hugely, mind-bogglingly big it is.",
author: "Douglas Adams"
},
{
quote: "Look up at the stars and not down at your feet.",
author: "Stephen Hawking"
},
{
quote: "We are all in the gutter, but some of us are looking at the stars.",
author: "Oscar Wilde"
},
{
quote: "In one of the stars I shall be living. In one of them I shall be laughing.",
author: "Antoine de Saint-Exupéry"
},
{
quote: "The universe is under no obligation to make sense to you.",
author: "Neil deGrasse Tyson"
},
{
quote: "The ships hung in the sky in much the same way that bricks don’t.",
author: "Douglas Adams"
},
{
quote: "Somewhere, something incredible is waiting to be known.",
author: "Carl Sagan"
},
{
quote: "What makes the desert beautiful is that somewhere it hides a well.",
author: "Antoine de Saint-Exupéry"
},
{
quote: "In the beginning the universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.",
author: "Douglas Adams"
},
{
quote: "Even the darkest night will end and the sun will rise.",
author: "Victor Hugo"
},
{
quote: "The nitrogen in our DNA, the calcium in our teeth, the iron in our blood... were made in the interiors of collapsing stars.",
author: "Carl Sagan"
},
{
quote: "Not only is the Universe stranger than we think, it is stranger than we can think.",
author: "Werner Heisenberg"
},
{
quote: "To confine our attention to terrestrial matters would be to limit the human spirit.",
author: "Stephen Hawking"
}
];