Class: Syncmind::PersonalityQuiz
- Inherits:
-
Object
- Object
- Syncmind::PersonalityQuiz
- Defined in:
- lib/syncmind.rb
Class Method Summary collapse
-
.accepts_things ⇒ Object
Do you accept things the way they are?.
-
.alone_time ⇒ Object
Do you prefer to be alone or with others?.
-
.automatic_decisions ⇒ Object
Do you make decisions first or think through them?.
-
.big_picture ⇒ Object
Do you prefer the big picture or the forest?.
-
.cleanliness ⇒ Object
Do you keep a clean room or not?.
-
.comfort_of_emotions ⇒ Object
Do you feel comfortable with your emotions?.
-
.commitment ⇒ Object
Do you keep your options open, or commit to a task?.
-
.conversational ⇒ Object
Do you prefer to talk, or be talked to?.
-
.create_data_folder ⇒ Object
Creates a data folder on your computer with placeholder script if it doesn’t exist.
-
.critical_thinking ⇒ Object
Do you tend to rely on faith or evidence?.
-
.easy_answers ⇒ Object
Do you prefer yes or no answers, or multiple choice?.
-
.event_recall ⇒ Object
Do you prefer to tell the exact event, or the meaning behind it.
-
.fixing_others ⇒ Object
Do you want to fix other people, or do like being fixed?.
-
.group_focus ⇒ Object
Do you work best in groups, or work best alone?.
-
.home_alone ⇒ Object
Do you prefer to stay at home or go out?.
-
.hurt_feelings ⇒ Object
Do you easily get your feelings hurt?.
-
.introversion ⇒ Object
Do you get warn out at parties or fired up?.
-
.issues_of_respect ⇒ Object
Do you prefer respect or love.
-
.justice_or_compassion ⇒ Object
Do you prefer retributes or rehabilitation?.
-
.memory ⇒ Object
Do you rely on memory or list making?.
-
.mind_or_heart ⇒ Object
Do you follow your heart or your head?.
-
.on_the_fly ⇒ Object
Do you do things on the fly, or plan ahead?.
-
.operate_quiz ⇒ Object
Operate the Default Quiz.
-
.organizational ⇒ Object
Do you like things to be chaotic or organized?.
-
.performance ⇒ Object
Do you like to perform in front of others?.
-
.planning ⇒ Object
Do you plan far ahead, or at the last minute?.
-
.procrastination ⇒ Object
Do you get work done right away or delay it?.
-
.relaxation_check ⇒ Object
Are you always mellow or do you relax?.
-
.retrospective ⇒ Object
Do you focus on the past, present, or future?.
-
.stand_out ⇒ Object
Do you fit in, or stand out like a sore thumb?.
-
.theory_or_practice ⇒ Object
Do you prefer speculating about the theory or practicing it?.
-
.what_is_that ⇒ Object
Do you prefer to know why something happened, or who, what, and when? Or both.
-
.work_ethic ⇒ Object
Do you work hard or slack off?.
-
.yelling_at_others ⇒ Object
Do you find it easy to yell at others?.
Class Method Details
.accepts_things ⇒ Object
Do you accept things the way they are?
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 |
# File 'lib/syncmind.rb', line 139 def self.accepts_things system("clear") print " Do you prefer to accept things the way they are? [A] I shall accept what you say. [B] I want to try to change your mind. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I shall accept what you say." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to try to change your mind." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to try to change your mind." f.puts old_script } end end |
.alone_time ⇒ Object
Do you prefer to be alone or with others?
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 |
# File 'lib/syncmind.rb', line 100 def self.alone_time system("clear") print " Do you prefer to be alone or with others? [A] Will you leave me alone. [B] I want to be with you. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Will you leave me alone." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to be with you." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to be with you." f.puts old_script } end end |
.automatic_decisions ⇒ Object
Do you make decisions first or think through them?
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 |
# File 'lib/syncmind.rb', line 217 def self.automatic_decisions system("clear") print " Do you prefer to act and think later? [A] I want to have some action. [B] Let me think first! >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to have some action." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Let me think first!" f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Let me think first!" f.puts old_script } end end |
.big_picture ⇒ Object
Do you prefer the big picture or the forest?
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 |
# File 'lib/syncmind.rb', line 927 def self.big_picture system("clear") print " Do you want the big picture? [A] Give me a break down of every single detail. [B] What do all those details mean? >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Give me a break down of every single detail." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "What do all those details mean?" f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "What do all those details mean?" f.puts old_script } end end |
.cleanliness ⇒ Object
Do you keep a clean room or not?
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 |
# File 'lib/syncmind.rb', line 178 def self.cleanliness system("clear") print " Do you keep a clean room? [A] I think I'll try to clean my room. [B] I think I will clean my room later. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think I'll try to clean my room." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think I will clean my room later." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think I will clean my room later." f.puts old_script } end end |
.comfort_of_emotions ⇒ Object
Do you feel comfortable with your emotions?
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 |
# File 'lib/syncmind.rb', line 1167 def self.comfort_of_emotions system("clear") print " Do you feel comfortable with your emotions? [A] Not sure how to sort out my feelings. [B] Oh god! Let me tell you everything. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Not sure how to sort out my feelings." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Oh god! Let me tell you everything." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Oh god! Let me tell you everything." f.puts old_script } end end |
.commitment ⇒ Object
Do you keep your options open, or commit to a task?
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 |
# File 'lib/syncmind.rb', line 647 def self.commitment system("clear") print " Do you like to finish your work? [A] I want to finish this project I've been working on. [B] The project I had in mind can wait. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to finish this project I've been working on." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "The project I had in mind can wait." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "The project I had in mind can wait." f.puts old_script } end end |
.conversational ⇒ Object
Do you prefer to talk, or be talked to?
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 |
# File 'lib/syncmind.rb', line 727 def self.conversational system("clear") print " Do you like to talk or be talked to? [A] Please! You're being condescending! [B] Let me give you a rundown of things. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Please! You're being condescending!" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Let me give you a rundown of things." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Let me give you a rundown of things." f.puts old_script } end end |
.create_data_folder ⇒ Object
Creates a data folder on your computer with placeholder script if it doesn’t exist.
9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/syncmind.rb', line 9 def self.create_data_folder # Creates a data folder on your computer with placeholder script if it doesn't exist. if File.directory?("data") puts "Data directory already exists." else system("mkdir data") open("data/script.txt", "w") { |f| f.puts "Hello World" } end end |
.critical_thinking ⇒ Object
Do you tend to rely on faith or evidence?
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 |
# File 'lib/syncmind.rb', line 61 def self.critical_thinking system("clear") print " Do you prefer to see the evidence, or have faith? [A] I want to see the evidence. [B] I shall have faith in it. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to see the evidence." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I shall have faith in it." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I shall have faith in it." f.puts old_script } end end |
.easy_answers ⇒ Object
Do you prefer yes or no answers, or multiple choice?
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 |
# File 'lib/syncmind.rb', line 295 def self.easy_answers system("clear") print " Do you like your questions simple? [A] Do I have any nuanced choices? [B] Give me a yes or no question. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Do I have any nuanced choices?" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Give me a yes or no question." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Give me a yes or no question." f.puts old_script } end end |
.event_recall ⇒ Object
Do you prefer to tell the exact event, or the meaning behind it.
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 |
# File 'lib/syncmind.rb', line 767 def self.event_recall system("clear") print " Do you like to recall the exact events? [A] Let me tell you exactly how my day went! [B] I want to know what just happened meant! >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Let me tell you exactly how my day went" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to know what just happened meant!" f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to know what just happened meant!" f.puts old_script } end end |
.fixing_others ⇒ Object
Do you want to fix other people, or do like being fixed?
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 |
# File 'lib/syncmind.rb', line 687 def self.fixing_others system("clear") print " Do you like to fix other people? [A] I want to talk about my problems. [B] I want others to talk about their problems. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to talk about my problems." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want others to talk about their problems." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want others to talk about their problems." f.puts old_script } end end |
.group_focus ⇒ Object
Do you work best in groups, or work best alone?
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 |
# File 'lib/syncmind.rb', line 412 def self.group_focus system("clear") print " Do you like to work with other people? [A] I want to find a team mate to work with. [B] I want to me left alone so I can work. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to find a team mate to work with." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to me left alone so I can work." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to me left alone so I can work." f.puts old_script } end end |
.home_alone ⇒ Object
Do you prefer to stay at home or go out?
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 |
# File 'lib/syncmind.rb', line 887 def self.home_alone system("clear") print " Do you like to stay at home? [A] How is where the heart is, and my importantly--my bed. [B] I'm getting some cabin fever at the moment. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "How is where the heart is, and my importantly--my bed." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I'm getting some cabin fever at the moment." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I'm getting some cabin fever at the moment." f.puts old_script } end end |
.hurt_feelings ⇒ Object
Do you easily get your feelings hurt?
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 |
# File 'lib/syncmind.rb', line 373 def self.hurt_feelings system("clear") print " Do you easile get your feelings hurt? [A] You hurt my feelings! [B] You didn't hurt my feelings. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "You hurt my feelings!" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "You didn't hurt my feelings." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "You didn't hurt my feelings." f.puts old_script } end end |
.introversion ⇒ Object
Do you get warn out at parties or fired up?
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 |
# File 'lib/syncmind.rb', line 569 def self.introversion system("clear") print " Do you find large crowds exhausting? [A] You are presently overcrowding me. [B] I want to find more friends. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "You are presently overcrowding me." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to find more friends." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to find more friends." f.puts old_script } end end |
.issues_of_respect ⇒ Object
Do you prefer respect or love
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 |
# File 'lib/syncmind.rb', line 530 def self.issues_of_respect system("clear") print " Do you want to be loved? [A] I want to have your respect. [B] Do you love me? >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to have your respect." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Do you love me?" f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Do you love me?" f.puts old_script } end end |
.justice_or_compassion ⇒ Object
Do you prefer retributes or rehabilitation?
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 |
# File 'lib/syncmind.rb', line 1007 def self.justice_or_compassion system("clear") print " Do you prefer a convict executed or spared? [A] Off with your head! [B] Eh, no worries. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Off with your head!" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Eh, no worries." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Eh, no worries." f.puts old_script } end end |
.memory ⇒ Object
Do you rely on memory or list making?
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 |
# File 'lib/syncmind.rb', line 22 def self.memory system("clear") print " Do you rely on memory or list making? [A] Let me make a list of that. [B] I will try and remember that. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Let me make a list of that." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I will try and remember that." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I will try and remember that." f.puts old_script } end end |
.mind_or_heart ⇒ Object
Do you follow your heart or your head?
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 |
# File 'lib/syncmind.rb', line 847 def self.mind_or_heart system("clear") print " Do you life your life with feelings? [A] Ha! Good one! But give me a real question. [B] Lets talk about things I've been brainstorming. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Ha! Good one! But give me a real question." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Lets talk about things I've been brainstorming." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Lets talk about things I've been brainstorming." f.puts old_script } end end |
.on_the_fly ⇒ Object
Do you do things on the fly, or plan ahead?
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 1001 1002 1003 1004 |
# File 'lib/syncmind.rb', line 967 def self.on_the_fly system("clear") print " Do you do things at the spur of the moment? [A] I want to go see a movie! [B] Can it wait at another point? >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to go see a movie!" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Can it wait at another point?" f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Can it wait at another point?" f.puts old_script } end end |
.operate_quiz ⇒ Object
Operate the Default Quiz
.organizational ⇒ Object
Do you like things to be chaotic or organized?
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 |
# File 'lib/syncmind.rb', line 334 def self.organizational system("clear") print " Do you like causing chaos for other people? [A] I want to see whose life I can ruin. [B] Lets try to keep life as simple and orderly as possible. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Do I have any nuanced choices?" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Give me a yes or no question." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Give me a yes or no question." f.puts old_script } end end |
.performance ⇒ Object
Do you like to perform in front of others?
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 |
# File 'lib/syncmind.rb', line 1207 def self.performance system("clear") print " Do you like to perform in front of others? [A] I want to get some tap shoes and a piano! [B] I think I'll hide behind you. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to get some tap shoes and a piano!" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think I'll hide behind you." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think I'll hide behind you." f.puts old_script } end end |
.planning ⇒ Object
Do you plan far ahead, or at the last minute?
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 |
# File 'lib/syncmind.rb', line 491 def self.planning system("clear") print " Do you like to plan at the last minute? [A] I think I forgot to get something. [B] I think I got all my things. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think I forgot to get something." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think I got all my things." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think I got all my things." f.puts old_script } end end |
.procrastination ⇒ Object
Do you get work done right away or delay it?
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 |
# File 'lib/syncmind.rb', line 807 def self.procrastination system("clear") print " Do you like to finish your work? [A] I already have my old project finished. [B] I think I still haven't finished the last project. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I already have my old project finished." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think I still haven't finished the last project." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think I still haven't finished the last project." f.puts old_script } end end |
.relaxation_check ⇒ Object
Are you always mellow or do you relax?
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 |
# File 'lib/syncmind.rb', line 256 def self.relaxation_check system("clear") print " Do you like to relax? [A] I want to smoke a joint! [B] Your question is making me nervous. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to smoke a joint!" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Your question is making me nervous." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Your question is making me nervous." f.puts old_script } end end |
.retrospective ⇒ Object
Do you focus on the past, present, or future?
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 |
# File 'lib/syncmind.rb', line 451 def self.retrospective system("clear") print " Do you live moment to moment? [A] I want to remember something important. [B] I just want to make some coffee. [C] I want to plan the next few weeks. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to remember something important." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I just want to make some coffee." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to plan the next few weeks." f.puts old_script } end end |
.stand_out ⇒ Object
Do you fit in, or stand out like a sore thumb?
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 |
# File 'lib/syncmind.rb', line 608 def self.stand_out system("clear") print " Do you like to draw attention to yourself? [A] Ladies and gentlemen, may I have your attention? [B] Don't look at me please. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Ladies and gentlemen, may I have your attention?" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Don't look at me please." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Don't look at me please." f.puts old_script } end end |
.theory_or_practice ⇒ Object
Do you prefer speculating about the theory or practicing it?
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 |
# File 'lib/syncmind.rb', line 1087 def self.theory_or_practice system("clear") print " Do you want to know the theory of stuff? [A] Give me a break of Conflict Theory! [B] Lets be practical with our conversation. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Give me a break of Conflict Theory!" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Lets be practical with our conversation." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Lets be practical with our conversation." f.puts old_script } end end |
.what_is_that ⇒ Object
Do you prefer to know why something happened, or who, what, and when? Or both.
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 |
# File 'lib/syncmind.rb', line 1247 def self.what_is_that system("clear") print " Do you like to know the reason behind things? [A] Why do you think that happened? [B] Tell me who did it, what they did, and when! [C] I want to know the why and who what when. >> "; answer = gets.chomp if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Why do you think that happened?" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Tell me who did it, what they did, and when!" f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I want to know the why and who what when." f.puts old_script } end end |
.work_ethic ⇒ Object
Do you work hard or slack off?
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 |
# File 'lib/syncmind.rb', line 1127 def self.work_ethic system("clear") print " Do you like to work hard? [A] My back aches, but the math equation is finished. [B] I think several hours has gone by. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "My back aches, but the math equation is finished." f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think several hours has gone by." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "I think several hours has gone by." f.puts old_script } end end |
.yelling_at_others ⇒ Object
Do you find it easy to yell at others?
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'lib/syncmind.rb', line 1047 def self.yelling_at_others system("clear") print " Do you like to yell at other people? [A] Why do I have to yell at you so much! [B] If I have to yell at you, it's not worth explaining. >> "; answer = gets.chomp # Tweak the answers. if answer == "A" # Writes A answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "Why do I have to yell at you so much!" f.puts old_script } elsif answer == "B" # Writes B answer to script file. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "If I have to yell at you, it's not worth explaining." f.puts old_script } else # Picks a default answer. old_script = File.read("data/script.txt") open("data/script.txt", "w") { |f| f.puts "If I have to yell at you, it's not worth explaining." f.puts old_script } end end |