-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.json
4046 lines (4046 loc) · 98.7 KB
/
questions.json
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "Do you ask enough questions? Or do you settle for what you know?"
},
{
"title": "Have you done anything lately worth remembering?"
},
{
"title": "When was the last time you tried something new?"
},
{
"title": "If not now, then when?"
},
{
"title": "If you had to teach something, what would you teach?"
},
{
"title": "What makes you smile?"
},
{
"title": "Are you holding onto something that you need to let go of?"
},
{
"title": "Which is worse, failing or never trying?"
},
{
"title": "Is stealing to feed a starving child wrong?"
},
{
"title": "What do you want most?"
},
{
"title": "What is the one thing you would most like to change about the world?"
},
{
"title": "What impact do you want to leave on the world?"
},
{
"title": "Are we living in a simulated universe?"
},
{
"title": "When was your first impression of someone wrong?"
},
{
"title": "What have you done that you are truly proud of?"
},
{
"title": "What do you want to be known for?"
},
{
"title": "What bad habits do you want to break?"
},
{
"title": "What simple fact do you wish more people understood?"
},
{
"title": "What is your greatest challenge?"
},
{
"title": "How do you define success?"
},
{
"title": "What can money not buy?"
},
{
"title": "Can you think of a time when impossible became possible?"
},
{
"title": "How short would your life have to be before you would start living differently today?"
},
{
"title": "How do you spend the majority of your free time?"
},
{
"title": "What have you learned recently that has changed the way you live?"
},
{
"title": "What is the nicest thing someone has ever done for you?"
},
{
"title": "What are your favorite simple pleasures?"
},
{
"title": "What book has had the greatest influence on your life?"
},
{
"title": "What do you do with the majority of your money?"
},
{
"title": "What worries you most about the future?"
},
{
"title": "Other than money, what else have you gained from your current job?"
},
{
"title": "Who has had the greatest impact on your life?"
},
{
"title": "Who depends on you?"
},
{
"title": "Who would you like to forgive?"
},
{
"title": "What is missing in your life?"
},
{
"title": "Which one of your responsibilities do you wish you could get rid of?"
},
{
"title": "What is the biggest change you have made in your life in the last year?"
},
{
"title": "What do you do over and over again that you hate doing?"
},
{
"title": "Through all of life's twists and turns, who has been there for you?"
},
{
"title": "What was your last major accomplishment?"
},
{
"title": "What do you do online that you would never do in real life?"
},
{
"title": "What is your most annoying habit?"
},
{
"title": "Do you think marriage is necessary? Why or why not?"
},
{
"title": "What have you done once that you will never do again?"
},
{
"title": "What do you think about almost every day?"
},
{
"title": "What's something that's overrated?"
},
{
"title": "What chance are you given every single day?"
},
{
"title": "What gives you hope?"
},
{
"title": "What are you getting tired of in your life?"
},
{
"title": "What's something no one can take away from you?"
},
{
"title": "What's one great thing that's free?"
},
{
"title": "What's something that's easier for you than it is for most people?"
},
{
"title": "What's something more people need to start caring about?"
},
{
"title": "What are you glad you let go of?"
},
{
"title": "What makes you different?"
},
{
"title": "What is the one thing you would most like to change about yourself?"
},
{
"title": "What's one thing you should never waste your time on?"
},
{
"title": "What's something small that made a big difference in your life?"
},
{
"title": "What's something everyone should experience at least once?"
},
{
"title": "What does every child deserve?"
},
{
"title": "What is the most difficult question you have ever had to answer?"
},
{
"title": "What is the best job in the world?"
},
{
"title": "What's something you have always wanted to do, but haven't yet done?"
},
{
"title": "What would you like to do for the rest of your life?"
},
{
"title": "What's something simple that makes you smile?"
},
{
"title": "What stands between you and what you want?"
},
{
"title": "What was the last wish you made?"
},
{
"title": "What are you naturally good at?"
},
{
"title": "What's something you would regret not doing?"
},
{
"title": "What are you glad you quit?"
},
{
"title": "If you haven't achieved it yet, what do you have to lose?"
},
{
"title": "What is your favorite sound?"
},
{
"title": "What's something new you recently learned about yourself?"
},
{
"title": "What do you like/dislike most about your job?"
},
{
"title": "What do you want more/less of in your life?"
},
{
"title": "Who would you like to please the most? Why?"
},
{
"title": "What has fear of failure stopped you from doing?"
},
{
"title": "What are you really good at?"
},
{
"title": "Who makes you feel good about yourself?"
},
{
"title": "What are you waiting for?"
},
{
"title": "What simple gesture have you recently witnessed that renewed your hope in humanity?"
},
{
"title": "What was the last thing that made you laugh out loud?"
},
{
"title": "What is your biggest phobia?"
},
{
"title": "What life lesson did you learn the hard way?"
},
{
"title": "How many hours a week do you spend online?"
},
{
"title": "What do you love to do?"
},
{
"title": "What do you love to practice?"
},
{
"title": "What are you an expert at?"
},
{
"title": "What things in life should always be free?"
},
{
"title": "Do you give money to homeless people? Why or why not?"
},
{
"title": "What's something everyone should do more often?"
},
{
"title": "What's something everyone should know how to do?"
},
{
"title": "What's a simple way to make a stranger smile?"
},
{
"title": "What's one simple way to make life less complicated?"
},
{
"title": "What's one simple rule you live by?"
},
{
"title": "Was mathematics invented or discovered?"
},
{
"title": "Is happiness ever truly worth it if others both currently and previously have suffered to bring it into existence?"
},
{
"title": "Do you see yourself as individual or connected?"
},
{
"title": "Why do/don't you want to have children?"
},
{
"title": "Do we have the right to give birth to children?"
},
{
"title": "If we want no one to suffer and think we're not selfish, then why do we bring children to life?"
},
{
"title": "Why can't we consent to be born?"
},
{
"title": "Can life really be regarded as a \"gift\"?"
},
{
"title": "Why would you create a desire for having a child in the first place, when the person obtaining it cannot deny such a request?"
},
{
"title": "Is addiction ever a good, worthwhile thing?"
},
{
"title": "Is life actually killing us with death?"
},
{
"title": "Is it out of reach? Or have you just not stretched yourself far enough?"
},
{
"title": "Who do you love? What are you doing about it?"
},
{
"title": "Do you think crying is a sign of weakness or strength?"
},
{
"title": "Do you celebrate the things you do have?"
},
{
"title": "What is the difference between living and existing?"
},
{
"title": "Time or money?"
},
{
"title": "Which activities make you lose track of time?"
},
{
"title": "Would you break the law to save a loved one?"
},
{
"title": "Would you rather have less work to do or more work you actually enjoy doing?"
},
{
"title": "When was the last time you listened to the sound of your own breathing?"
},
{
"title": "What's something you know you do differently than most people?"
},
{
"title": "If we learn from our mistakes, why are we always so afraid to make a mistake?"
},
{
"title": "If life is so short, why do we do so many things we don't like, and like so many things we don't do?"
},
{
"title": "What gives your life meaning?"
},
{
"title": "What makes everyone smile?"
},
{
"title": "What do you owe yourself?"
},
{
"title": "Why do you matter?"
},
{
"title": "What are you sure of in your life?"
},
{
"title": "What is the greatest truth?"
},
{
"title": "When have you worked hard and loved every minute of it?"
},
{
"title": "What do you love most about yourself?"
},
{
"title": "How have you helped someone else recently?"
},
{
"title": "What is your greatest skill?"
},
{
"title": "How are you pursuing your dreams?"
},
{
"title": "What's the biggest lie you once believed was true?"
},
{
"title": "What's been on your mind most lately?"
},
{
"title": "What risks do you wish you had taken?"
},
{
"title": "What motivates you to go to work each day?"
},
{
"title": "What is your greatest strength and your greatest weakness?"
},
{
"title": "Do you like the city or town you live in? Why or why not?"
},
{
"title": "What's the best part of being you?"
},
{
"title": "What's the best decision you've ever made?"
},
{
"title": "Based on your current daily actions and routines, where would you expect to be in five years?"
},
{
"title": "When you have an hour of free time, what do you usually do?"
},
{
"title": "What makes you feel secure?"
},
{
"title": "What is your favorite smell?"
},
{
"title": "What makes life easier?"
},
{
"title": "Does money make you happy?"
},
{
"title": "What have you bought that you never use?"
},
{
"title": "Do you text while driving? Why?"
},
{
"title": "What do you wish did not exist?"
},
{
"title": "What decisions have you waited too long to make?"
},
{
"title": "What do you need to spend more time doing?"
},
{
"title": "What's the last thing you regret buying?"
},
{
"title": "What is something you wish you did not have?"
},
{
"title": "What mistakes do you make over and over again?"
},
{
"title": "What do you do when you love someone who doesn't love you back?"
},
{
"title": "What is worth the pain?"
},
{
"title": "What's something that can't be taught?"
},
{
"title": "What promise to yourself do you still need to fulfill?"
},
{
"title": "Who have you been thinking about recently?"
},
{
"title": "What's something you no longer do that you used to do frequently?"
},
{
"title": "What lies do you often hear people tell?"
},
{
"title": "What is something you strongly believe will happen in the future?"
},
{
"title": "What's something nobody could ever steal from you?"
},
{
"title": "What's something that happened to you that made you stronger?"
},
{
"title": "What's something everyone needs to discover for themselves?"
},
{
"title": "What is your purpose?"
},
{
"title": "What's something you must have in your life?"
},
{
"title": "When is intelligence not enough?"
},
{
"title": "What is something that can bring people together?"
},
{
"title": "What's something that's harder for you than it is for most people?"
},
{
"title": "What's something you think about all the time?"
},
{
"title": "What's something you have always wanted to try?"
},
{
"title": "What's something many people mistakenly assume about you?"
},
{
"title": "What's something everyone should start doing for others?"
},
{
"title": "What change to your routine has saved you the most time?"
},
{
"title": "What is one thing in your life that keeps getting better and better?"
},
{
"title": "What's something you must quit to be happy?"
},
{
"title": "What's one skill you need to succeed at anything?"
},
{
"title": "What is something you know you need to stop doing?"
},
{
"title": "What does time not heal?"
},
{
"title": "What's one goal that motivates you?"
},
{
"title": "What would the child you once were think of the adult you have become?"
},
{
"title": "What do you tolerate almost every day?"
},
{
"title": "What's something you know you're doing wrong?"
},
{
"title": "What is something you must give up to move forward?"
},
{
"title": "At what age did you become an adult?"
},
{
"title": "What's something you can only give to yourself?"
},
{
"title": "What causes you the most stress in life?"
},
{
"title": "What do you think should be illegal that isn't?"
},
{
"title": "What's the farthest you have ever traveled from home?"
},
{
"title": "How do you want to live?"
},
{
"title": "What causes you to stop respecting another person?"
},
{
"title": "What's something you are 100% devoted to?"
},
{
"title": "What did you give up on too soon?"
},
{
"title": "What's something you wish happened more often?"
},
{
"title": "What's one mistake you will never make again?"
},
{
"title": "What's one thing that would make your life easier?"
},
{
"title": "What makes life difficult?"
},
{
"title": "Who is one person you will never forget?"
},
{
"title": "What's something you do everyday that you hate to do?"
},
{
"title": "What kind of people does the world need more of?"
},
{
"title": "What's a word that has lots of power?"
},
{
"title": "What is something that is often wasted?"
},
{
"title": "What is one thing you absolutely need in life?"
},
{
"title": "What's one thing you're never too young or too old to enjoy?"
},
{
"title": "What qualities do you love most about your family and closest friends?"
},
{
"title": "What's the easiest thing to love?"
},
{
"title": "What is always worth the wait?"
},
{
"title": "What do you not like to waste?"
},
{
"title": "What is it about society today that worries you the most?"
},
{
"title": "What's one problem you're thankful you don't have?"
},
{
"title": "What's something positive you tell yourself when everything seems to be going wrong?"
},
{
"title": "What's one thing that would help solve all the world's problems?"
},
{
"title": "What would you immediately do differently if you knew no one would judge you?"
},
{
"title": "What is something that will shorten your life?"
},
{
"title": "What's one opportunity you have now that you have not taken?"
},
{
"title": "What is something you are tired of seeing online?"
},
{
"title": "What's something that always leaves you wanting more?"
},
{
"title": "What do you most regret never telling someone?"
},
{
"title": "When did you last judge someone who you didn't even know?"
},
{
"title": "What's something you enjoy doing again and again?"
},
{
"title": "What's something you enjoy doing for other people?"
},
{
"title": "If you could do it all over again, would you change anything?"
},
{
"title": "What does your joy look like today?"
},
{
"title": "Is it possible to lie without saying a word?"
},
{
"title": "If you had a friend who spoke to you in the same way that you sometimes speak to yourself, how long would you allow that person to be your friend?"
},
{
"title": "What would you regret not fully doing, being, or having in your life?"
},
{
"title": "Are you aware that someone might have it worse than you do?"
},
{
"title": "When you're old, what will matter to you the most?"
},
{
"title": "When is it time to stop calculating risk and rewards, and just do what you know is right?"
},
{
"title": "How old would you be if you didn't know how old you are?"
},
{
"title": "When it's all said and done, will you have said more than you've done?"
},
{
"title": "If you had the opportunity to get a message across to a large group of people, what would your message be?"
},
{
"title": "If the average human lifespan was 40 years, how would you live your life differently?"
},
{
"title": "What do we all have in common, besides our genes, that makes us human beings?"
},
{
"title": "If you could choose one book as a mandatory read for all high school students, which book would you choose?"
},
{
"title": "What does \"The American Dream\" mean to you?"
},
{
"title": "If you could instill one piece of advice in a newborn baby's mind, what advice would you give?"
},
{
"title": "What is the most desirable trait another person can possess?"
},
{
"title": "What are you most grateful for?"
},
{
"title": "Are you more worried about doing things right, or doing the right things?"
},
{
"title": "What has life taught you recently?"
},
{
"title": "Where do you find inspiration?"
},
{
"title": "What is the most defining moment of your life thus far?"
},
{
"title": "In the haste of your daily life, what are you not seeing?"
},
{
"title": "What lifts your spirits when life gets you down?"
},
{
"title": "Have you ever regretted something you didn't say or do?"
},
{
"title": "Has your greatest fear ever come true?"
},
{
"title": "Why do we think of others the most when they're gone?"
},
{
"title": "What is your most beloved childhood memory?"
},
{
"title": "Is it more important to love or be loved?"
},
{
"title": "If you had the chance to go back in time and change one thing, would you do it?"
},
{
"title": "Who/what do you think stands between you and happiness?"
},
{
"title": "Can there be happiness without sadness? Pleasure without pain? Peace without war?"
},
{
"title": "What's the one thing you'd like others to remember about you at the end of your life?"
},
{
"title": "Is there such a thing as perfect?"
},
{
"title": "To what degree have you actually controlled the course your life has taken?"
},
{
"title": "What does it mean to be human?"
},
{
"title": "Where would you most like to go and why?"
},
{
"title": "Is it more important to do what you love or to love what you are doing?"
},
{
"title": "What small act of kindness were you once shown that you will never forget?"
},
{
"title": "What is your happiest childhood memory? What makes it so special?"
},
{
"title": "What is the simplest truth you can express in words?"
},
{
"title": "Do you own your things? Or do your things own you?"
},
{
"title": "Would you rather lose all of your old memories, or never be able to make new ones?"
},
{
"title": "How do you deal with someone in a position of power who wants you to fail?"
},
{
"title": "What do you have that you cannot live without?"
},
{
"title": "What sustains you on a daily basis?"
},
{
"title": "Do you ever celebrate the green lights?"
},
{
"title": "What personal prisons have you built out of fears?"
},
{
"title": "What one thing have you not done that you really want to do?"
},
{
"title": "Why are you, you?"
},
{
"title": "Is it ever right to do the wrong thing? Is it ever wrong to do the right thing?"
},
{
"title": "How would you define \"freedom\" in your own words?"
},
{
"title": "What is the most important thing you could do right now in your personal life?"
},
{
"title": "What animal are you most drawn to?"
},
{
"title": "Would you ever give up your life to save someone else?"
},
{
"title": "Are you happy with yourself?"
},
{
"title": "What is the meaning of \"peace\" to you?"
},
{
"title": "When do you feel most like yourself?"
},
{
"title": "When you help someone, do you ever think, \"What's in it for me?\"?"
},
{
"title": "What have you read online recently that inspired you?"
},
{
"title": "Beyond the titles that others have given you, who are you?"
},
{
"title": "Is it possible to know the truth without challenging it first?"
},
{
"title": "If you could live the next 24 hours and then erase it and start over just once, what would you do?"
},
{
"title": "What's your definition of \"heaven\"?"
},
{
"title": "Is there ever a time when giving up makes sense?"
},
{
"title": "What makes you proud?"
},
{
"title": "Where do you find peace?"
},
{
"title": "Will this day matter is five years?"
},
{
"title": "Do you see to believe or believe to see?"
},
{
"title": "What's the next big step you need to take?"
},
{
"title": "What are the primary components of a successful life?"
},
{
"title": "How would the world be different if you were never born?"
},
{
"title": "With the resources you have, what can you do right now to bring yourself closer to your goal?"
},
{
"title": "Why do we idolize sports players?"
},
{
"title": "What do you do to deliberately impress others?"
},
{
"title": "In your lifetime, what have you done that hurt somebody else?"
},
{
"title": "What's the best part of growing older?"
},
{
"title": "When was the last time you lied? What did you lie about?"
},
{
"title": "When was the last time you were really angry? Angry about what?"
},
{
"title": "When you look into the past, what do you miss the most?"
},
{
"title": "What are you looking forward to?"
},
{
"title": "What is the number one thing you want to accomplish before you die?"
},
{
"title": "If you had to move 3000 miles away, what one thing would you miss most?"
},
{
"title": "What would you like to change?"
},
{
"title": "What or who has been distracting you?"
},
{
"title": "What's something most people don't know about you?"
},
{
"title": "If you could relive yesterday, what would you do differently?"
},
{
"title": "What white lies do you often tell?"
},
{
"title": "What did life teach you yesterday?"
},
{
"title": "What have you done that you are not proud of?"
},
{
"title": "How would you spend your ideal day?"
},
{
"title": "What do you admire most about your mother and father?"
},
{
"title": "What is the best advice you have ever received?"
},
{
"title": "If you could live forever, would you want to?"
},
{
"title": "What is your biggest regret?"
},
{
"title": "When you meet someone for the very first time, what do you want them to think about you?"
},
{
"title": "Are you happy with where you are in your life? Why?"
},
{
"title": "How many hours of TV do you watch in ... A week? A month? A year?"
},
{
"title": "What do you sometimes pretend you understand that you really don't?"
},
{
"title": "What celebrities do you admire? Why?"
},
{
"title": "What good comes from suffering?"
},
{
"title": "What is important enough to go to war over?"
},
{
"title": "How much money per month is enough for you to live comfortably?"
},
{
"title": "Who do you sometimes compare yourself to?"
},
{
"title": "What questions do you often ask yourself?"
},
{
"title": "What is something you have always wanted since you were a kid?"
},
{
"title": "When did you not speak up when you should have?"
},
{
"title": "Who or what is the greatest enemy of mankind?"
},
{
"title": "What's something you wish you had done earlier in life?"
},
{
"title": "What do you know well enough to teach to others?"
},
{
"title": "What have you lost interest in recently?"
},
{
"title": "What is the number one solution to healing the world?"
},
{
"title": "Where do you spend most of your time while you're awake?"
},