-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstants.ts
More file actions
141 lines (139 loc) · 4.19 KB
/
constants.ts
File metadata and controls
141 lines (139 loc) · 4.19 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
export const DEFAULT_QUOTES = [
{
text: "Design is not just what it looks like and feels like. Design is how it works.",
author: "Steve Jobs (Apple)"
},
{
text: "Your most unhappy customers are your greatest source of learning.",
author: "Bill Gates (Microsoft)"
},
{
text: "The details are not the details. They make the design.",
author: "Charles Eames"
},
{
text: "Move fast and break things. Unless you are breaking stuff, you are not moving fast enough.",
author: "Mark Zuckerberg (Meta)"
},
{
text: "When something is important enough, you do it even if the odds are not in your favor.",
author: "Elon Musk (Tesla/SpaceX)"
},
{
text: "The best way to predict the future is to invent it.",
author: "Alan Kay (Xerox PARC)"
},
{
text: "Software is eating the world.",
author: "Marc Andreessen (Netscape/A16Z)"
},
{
text: "Run fast, trust your gut, and don't look back.",
author: "Jensen Huang (Nvidia)"
},
{
text: "The biggest risk is not taking any risk.",
author: "Mark Zuckerberg (Meta)"
},
{
text: "Innovation distinguishes between a leader and a follower.",
author: "Steve Jobs (Apple)"
},
{
text: "If you're not embarrassed by the first version of your product, you've launched too late.",
author: "Reid Hoffman (LinkedIn)"
},
{
text: "Talk is cheap. Show me the code.",
author: "Linus Torvalds (Linux)"
},
{
text: "Move fast and be bold.",
author: "Sheryl Sandberg (Meta)"
},
{
text: "The advance of technology is based on making it fit in so that you don't really even notice it, so it's part of everyday life.",
author: "Bill Gates (Microsoft)"
},
{
text: "It's not a faith in technology. It's a faith in people.",
author: "Steve Jobs (Apple)"
},
{
text: "The only way to do great work is to love what you do.",
author: "Steve Jobs (Apple)"
},
{
text: "One of the most important things for any leader is to never let anyone else define who you are.",
author: "Tim Cook (Apple)"
},
{
text: "Intelligence is the ability to adapt to change.",
author: "Stephen Hawking"
},
{
text: "The question isn't who is going to let me; it's who is going to stop me.",
author: "Ayn Rand"
},
{
text: "Optimism is a strategy for making a better future.",
author: "Noam Chomsky"
},
{
text: "You can't connect the dots looking forward; you can only connect them looking backwards.",
author: "Steve Jobs (Apple)"
},
{
text: "The computer was born to solve problems that did not exist before.",
author: "Bill Gates (Microsoft)"
},
{
text: "Stay hungry, stay foolish.",
author: "Steve Jobs (Apple)"
},
{
text: "Be a yardstick of quality. Some people aren't used to an environment where excellence is expected.",
author: "Steve Jobs (Apple)"
},
{
text: "I think it is possible for ordinary people to choose to be extraordinary.",
author: "Elon Musk (Tesla/SpaceX)"
},
{
text: "Life is too short to be small.",
author: "Benjamin Disraeli"
},
{
text: "We are what we repeatedly do. Excellence, then, is not an act, but a habit.",
author: "Aristotle"
},
{
text: "Everything should be made as simple as possible, but not simpler.",
author: "Albert Einstein"
},
{
text: "The people who are crazy enough to think they can change the world are the ones who do.",
author: "Steve Jobs (Apple)"
},
{
text: "Great things in business are never done by one person. They're done by a team of people.",
author: "Steve Jobs (Apple)"
},
{
text: "The hard part is not making a decision, it's living with it.",
author: "Ben Horowitz (A16Z)"
},
{
text: "Focus is a matter of deciding what things you're not going to do.",
author: "John Carmack (id Software)"
},
{
text: "Simplicity is the final achievement. After one has played a vast quantity of notes and more notes, it is simplicity that emerges as the crowning reward of art.",
author: "Frederic Chopin"
},
{
text: "A ship in port is safe, but that is not what ships are built for.",
author: "Grace Hopper"
}
];
export const DURATIONS = [15, 30, 60, 120];