File size: 34,475 Bytes
ef14680 | 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 1001 1002 1003 1004 1005 1006 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 1045 1046 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 1085 1086 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 1125 1126 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 1165 1166 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 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 | [
{
"start_time": "34.01",
"stop_time": "45.81",
"speaker": "Ellie",
"value": "hi i'm ellie thanks for coming in today i was created to talk to people in a safe and secure environment think of me as a friend i don't judge i can't i'm a computer"
},
{
"start_time": "46.96",
"stop_time": "56.97",
"speaker": "Ellie",
"value": "i''m here to learn about people and would love to learn about you i'll ask a few questions to get us started and please feel free to tell me anything your answers are totally confidential"
},
{
"start_time": "57.9",
"stop_time": "59.05",
"speaker": "Ellie",
"value": "how are you doing today"
},
{
"start_time": "59.82",
"stop_time": "62.31",
"speaker": "Participant",
"value": "i'm doing good um"
},
{
"start_time": "62.32",
"stop_time": "63.24",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "64.81",
"stop_time": "66.31",
"speaker": "Ellie",
"value": "where are you from originally"
},
{
"start_time": "66.77",
"stop_time": "68.92",
"speaker": "Participant",
"value": "from los angeles california"
},
{
"start_time": "69.47",
"stop_time": "70.41",
"speaker": "Ellie",
"value": "nice"
},
{
"start_time": "71.46",
"stop_time": "73.43",
"speaker": "Ellie",
"value": "what are some things you really like about l_a"
},
{
"start_time": "74.52",
"stop_time": "80.47",
"speaker": "Participant",
"value": "um the cool weather the beaches the people the schools "
},
{
"start_time": "81.47",
"stop_time": "82.2",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "82.92",
"stop_time": "84.44",
"speaker": "Ellie",
"value": "what'd you study at school "
},
{
"start_time": "85.91",
"stop_time": "88.17",
"speaker": "Participant",
"value": "um child development"
},
{
"start_time": "89.06",
"stop_time": "91.22",
"speaker": "Ellie",
"value": "nice are you still doing that"
},
{
"start_time": "91.43",
"stop_time": "92.32",
"speaker": "Participant",
"value": "yes"
},
{
"start_time": "93.88",
"stop_time": "95.61",
"speaker": "Ellie",
"value": "what's your dream job"
},
{
"start_time": "96.01",
"stop_time": "98.46",
"speaker": "Participant",
"value": "to be a teacher for special education"
},
{
"start_time": "99.49",
"stop_time": "100.85",
"speaker": "Ellie",
"value": "how hard is that"
},
{
"start_time": "101",
"stop_time": "103.69",
"speaker": "Participant",
"value": "it's not hard 'cause i love to work with children"
},
{
"start_time": "104.09",
"stop_time": "105.06",
"speaker": "Ellie",
"value": "really"
},
{
"start_time": "105.2",
"stop_time": "105.81",
"speaker": "Participant",
"value": "yes"
},
{
"start_time": "108.61",
"stop_time": "111.27",
"speaker": "Ellie",
"value": "what are some things that make you really mad "
},
{
"start_time": "112.37",
"stop_time": "114.16",
"speaker": "Participant",
"value": "dishonesty maybe"
},
{
"start_time": "115.32",
"stop_time": "116.14",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "116.63",
"stop_time": "117.16",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "116.73",
"stop_time": "118.48",
"speaker": "Ellie",
"value": "can you give me an example of that"
},
{
"start_time": "118.92",
"stop_time": "126.2",
"speaker": "Participant",
"value": "like if a guy like especially when it comes to relationships when they lie to you about something that's very minimal"
},
{
"start_time": "127.43",
"stop_time": "128.22",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "130.67",
"stop_time": "133.23",
"speaker": "Ellie",
"value": "who's someone that's been a positive influence in your life"
},
{
"start_time": "133.79",
"stop_time": "136.01",
"speaker": "Participant",
"value": "my mom i wanna say my mom"
},
{
"start_time": "136.53",
"stop_time": "137.45",
"speaker": "Ellie",
"value": "aww"
},
{
"start_time": "138.83",
"stop_time": "140.55",
"speaker": "Ellie",
"value": "how close are you to them"
},
{
"start_time": "141",
"stop_time": "143.29",
"speaker": "Participant",
"value": "um very close we talk every day"
},
{
"start_time": "145.03",
"stop_time": "146.62",
"speaker": "Ellie",
"value": "that's so good to hear"
},
{
"start_time": "147.42",
"stop_time": "149.42",
"speaker": "Ellie",
"value": "how close are you to your family"
},
{
"start_time": "149.81",
"stop_time": "153.7",
"speaker": "Participant",
"value": "very close even though i don't live with them i try to see them as much as i can"
},
{
"start_time": "155.02",
"stop_time": "155.76",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "158",
"stop_time": "160.14",
"speaker": "Ellie",
"value": "how do you like your living situation"
},
{
"start_time": "160.87",
"stop_time": "162.52",
"speaker": "Participant",
"value": "uh it's okay <laughter>"
},
{
"start_time": "163.49",
"stop_time": "164.83",
"speaker": "Participant",
"value": "it's it's good"
},
{
"start_time": "163.95",
"stop_time": "164.82",
"speaker": "Ellie",
"value": "<laughter>"
},
{
"start_time": "167.32",
"stop_time": "167.7",
"speaker": "Participant",
"value": "it's"
},
{
"start_time": "167.65",
"stop_time": "169",
"speaker": "Ellie",
"value": "do you have roommates"
},
{
"start_time": "169.01",
"stop_time": "169.87",
"speaker": "Participant",
"value": "yes i do "
},
{
"start_time": "171.36",
"stop_time": "172.54",
"speaker": "Ellie",
"value": "tell me more about that"
},
{
"start_time": "173.07",
"stop_time": "178.02",
"speaker": "Participant",
"value": "um they're they're friendly it's just that they're very quiet"
},
{
"start_time": "178.41",
"stop_time": "180.26",
"speaker": "Participant",
"value": "'cause i'm not used to that environment"
},
{
"start_time": "181.14",
"stop_time": "181.72",
"speaker": "Ellie",
"value": "oh"
},
{
"start_time": "184.12",
"stop_time": "186.2",
"speaker": "Ellie",
"value": "what's it like for you living with them"
},
{
"start_time": "186.58",
"stop_time": "198.73",
"speaker": "Participant",
"value": "it's fine like the how much it costs is very cheap so that's good and they're friendly so it's fine I just wish it was a little bit it could've been better so yeah "
},
{
"start_time": "199.78",
"stop_time": "202.08",
"speaker": "Ellie",
"value": "could you have done anything to avoid it "
},
{
"start_time": "202.12",
"stop_time": "203.34",
"speaker": "Participant",
"value": "yes <laughter> "
},
{
"start_time": "205.18",
"stop_time": "207.22",
"speaker": "Ellie",
"value": "could you say a little more about that "
},
{
"start_time": "207.42",
"stop_time": "211.37",
"speaker": "Participant",
"value": "um i had a different option to live with somebody else"
},
{
"start_time": "211.84",
"stop_time": "230.52",
"speaker": "Participant",
"value": "and i'm still friends with the female and comes to find out that we connect more than the roommates that I live with so I kinda regret moving in with the roommates I have now versus who i was supposed to move with in the beginning so but i'm stuck for a year so it's whatever "
},
{
"start_time": "226.71",
"stop_time": "227.13",
"speaker": "Ellie",
"value": "mm"
},
{
"start_time": "231.33",
"stop_time": "232.6",
"speaker": "Ellie",
"value": "i'm sorry to hear that"
},
{
"start_time": "232.6",
"stop_time": "233.51",
"speaker": "Participant",
"value": "that's fine"
},
{
"start_time": "234.73",
"stop_time": "236.22",
"speaker": "Ellie",
"value": "how do you know them"
},
{
"start_time": "236.7",
"stop_time": "238.23",
"speaker": "Participant",
"value": "how do i know who"
},
{
"start_time": "244.42",
"stop_time": "244.67",
"speaker": "Participant",
"value": "i"
},
{
"start_time": "244.68",
"stop_time": "246.23",
"speaker": "Ellie",
"value": "let's come back to that later"
},
{
"start_time": "246.44",
"stop_time": "247.3",
"speaker": "Participant",
"value": "yeah <laughter>"
},
{
"start_time": "248.64",
"stop_time": "250.92",
"speaker": "Ellie",
"value": "what are some things that make you really mad "
},
{
"start_time": "253.8",
"stop_time": "258.69",
"speaker": "Participant",
"value": "there's nothing that really gets me really mad that i can think of the top of my head"
},
{
"start_time": "263.05",
"stop_time": "264.64",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "265.4",
"stop_time": "266.85",
"speaker": "Ellie",
"value": "whatever comes to your mind"
},
{
"start_time": "269.24",
"stop_time": "270.16",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "271.27",
"stop_time": "276.63",
"speaker": "Participant",
"value": "maybe when it comes to schools how they treat the children especially children of color maybe "
},
{
"start_time": "277.32",
"stop_time": "277.92",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "279.71",
"stop_time": "281.16",
"speaker": "Participant",
"value": "that really gets me mad"
},
{
"start_time": "282.37",
"stop_time": "283.24",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "285.09",
"stop_time": "286.85",
"speaker": "Ellie",
"value": "do you consider yourself an introvert"
},
{
"start_time": "288.29",
"stop_time": "290.08",
"speaker": "Participant",
"value": "mm yes "
},
{
"start_time": "290.63",
"stop_time": "291.58",
"speaker": "Ellie",
"value": "why"
},
{
"start_time": "293.23",
"stop_time": "300.87",
"speaker": "Participant",
"value": "because i do things from within i guess so um internally motivated to do things i guess yeah"
},
{
"start_time": "301.56",
"stop_time": "303.29",
"speaker": "Ellie",
"value": "do you feel that way often"
},
{
"start_time": "303.58",
"stop_time": "304.76",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "307.7",
"stop_time": "308.32",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "310.13",
"stop_time": "314.1",
"speaker": "Ellie",
"value": "when was the last time you argued with someone and what was it about "
},
{
"start_time": "316.71",
"stop_time": "317.81",
"speaker": "Participant",
"value": "wow"
},
{
"start_time": "318.58",
"stop_time": "321.87",
"speaker": "Participant",
"value": "i hardly ever argue with somebody <laughter>"
},
{
"start_time": "322.08",
"stop_time": "322.6",
"speaker": "Ellie",
"value": "really"
},
{
"start_time": "322.81",
"stop_time": "323.57",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "325.07",
"stop_time": "330.41",
"speaker": "Participant",
"value": "oh my sister i guess my sister that was about a month ago"
},
{
"start_time": "328.54",
"stop_time": "329.7",
"speaker": "Ellie",
"value": "<laughter>"
},
{
"start_time": "331.52",
"stop_time": "334.01",
"speaker": "Ellie",
"value": "how did you feel in that moment"
},
{
"start_time": "334.34",
"stop_time": "345.65",
"speaker": "Participant",
"value": "uh i felt very betrayed and belittled because she's my little sister and she shouldn't be disrespecting me in any type of way because i'm an adult so yeah i was not feeling the situation at all"
},
{
"start_time": "342.57",
"stop_time": "343.07",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "346.85",
"stop_time": "348.23",
"speaker": "Ellie",
"value": "can you tell me about that"
},
{
"start_time": "349.27",
"stop_time": "350.43",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "351.46",
"stop_time": "355.65",
"speaker": "Participant",
"value": "just her getting into grown folks' business and"
},
{
"start_time": "356.44",
"stop_time": "360.67",
"speaker": "Participant",
"value": "it was a conversation between me and my mother and i guess she overheard what was being said"
},
{
"start_time": "360.97",
"stop_time": "379.56",
"speaker": "Participant",
"value": "and she felt like through my actions that i was choosing somebody else over my family when that wasn't even the case but because she didn't know the whole situation she just automatically assumed and put stuff on facebook about me disrespecting me calling me out by name and it was just yeah so <laughter> "
},
{
"start_time": "376.79",
"stop_time": "377.74",
"speaker": "Ellie",
"value": "oh my gosh"
},
{
"start_time": "379.99",
"stop_time": "394.15",
"speaker": "Participant",
"value": "and she then comes to me about it like she did all this other stuff on facebook i don't that's one thing i don't like either is when you i hate indirect comments like if you have if you need to talk to me come directly to me don't put it on facebook tell other people"
},
{
"start_time": "394.63",
"stop_time": "397.21",
"speaker": "Participant",
"value": "that's a pet peeve of mine so i really don't like that"
},
{
"start_time": "397.5",
"stop_time": "399.32",
"speaker": "Ellie",
"value": "yeah that sucks"
},
{
"start_time": "399.48",
"stop_time": "403.04",
"speaker": "Participant",
"value": "yeah so but i mean we're fine now"
},
{
"start_time": "403.49",
"stop_time": "405.12",
"speaker": "Participant",
"value": "so that's good"
},
{
"start_time": "405.02",
"stop_time": "406.53",
"speaker": "Ellie",
"value": "that's so good to hear"
},
{
"start_time": "406.54",
"stop_time": "407.16",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "409.04",
"stop_time": "412.31",
"speaker": "Ellie",
"value": "what advice would you give yourself ten or twenty years ago"
},
{
"start_time": "414.79",
"stop_time": "415.8",
"speaker": "Participant",
"value": "to not "
},
{
"start_time": "416.97",
"stop_time": "418.72",
"speaker": "Participant",
"value": "believe people so easily"
},
{
"start_time": "420.15",
"stop_time": "422.31",
"speaker": "Participant",
"value": "so gullible to not be so gullible"
},
{
"start_time": "420.18",
"stop_time": "420.74",
"speaker": "Ellie",
"value": "hm"
},
{
"start_time": "423.49",
"stop_time": "424.33",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "426.2",
"stop_time": "427.88",
"speaker": "Ellie",
"value": "tell me more about that"
},
{
"start_time": "428.54",
"stop_time": "448.57",
"speaker": "Participant",
"value": "i guess i've been hearing that lately how i believe anybody anything that somebody says without really thinking about it or without having them prove it so i guess you could say i let i made a lot of mistakes i don't wanna say i regretted it because i'm glad i went through it while i was younger than me getting older and going through the same situations so um"
},
{
"start_time": "449.76",
"stop_time": "454.31",
"speaker": "Participant",
"value": "yeah i believe people too easily and i give people too much chances "
},
{
"start_time": "455.21",
"stop_time": "455.82",
"speaker": "Participant",
"value": "so"
},
{
"start_time": "455.69",
"stop_time": "456.35",
"speaker": "Ellie",
"value": "hm"
},
{
"start_time": "456.73",
"stop_time": "457.4",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "461.41",
"stop_time": "463.93",
"speaker": "Ellie",
"value": "what's one of your most memorable experiences"
},
{
"start_time": "464.6",
"stop_time": "474.3",
"speaker": "Participant",
"value": "when i went on a cruise which was a happy experience when i went on a cruise to mexico with my family um when i was sixteen about six years ago"
},
{
"start_time": "474.97",
"stop_time": "475.92",
"speaker": "Ellie",
"value": "wow "
},
{
"start_time": "476.17",
"stop_time": "477.17",
"speaker": "Participant",
"value": "yeah <laughter>"
},
{
"start_time": "477.21",
"stop_time": "478.67",
"speaker": "Ellie",
"value": "that's a long time"
},
{
"start_time": "478.75",
"stop_time": "482.58",
"speaker": "Participant",
"value": "yeah i mean yeah i guess it was <laughter>"
},
{
"start_time": "483.67",
"stop_time": "485.67",
"speaker": "Ellie",
"value": "<laughter> do you travel a lot"
},
{
"start_time": "486.14",
"stop_time": "488.19",
"speaker": "Participant",
"value": "no i really want to though"
},
{
"start_time": "488.58",
"stop_time": "490.49",
"speaker": "Ellie",
"value": "what do you enjoy about traveling"
},
{
"start_time": "491.33",
"stop_time": "492.24",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "493.37",
"stop_time": "505.4",
"speaker": "Participant",
"value": "trying new things seeing new views of the world um trying the different type of foods um seeing how the government is and how they run the things out there i guess"
},
{
"start_time": "505.4",
"stop_time": "505.96",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "506.52",
"stop_time": "507.24",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "507.27",
"stop_time": "508.74",
"speaker": "Ellie",
"value": "i'd love to hear about one of your trips"
},
{
"start_time": "509.11",
"stop_time": "513.61",
"speaker": "Participant",
"value": "yeah i plan to go to the bahamas next year"
},
{
"start_time": "514.08",
"stop_time": "516.47",
"speaker": "Participant",
"value": "i plan to do a lot of traveling next year actually"
},
{
"start_time": "517.11",
"stop_time": "517.55",
"speaker": "Participant",
"value": "so"
},
{
"start_time": "517.82",
"stop_time": "518.43",
"speaker": "Ellie",
"value": "really"
},
{
"start_time": "518.48",
"stop_time": "519.24",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "524.18",
"stop_time": "526.89",
"speaker": "Ellie",
"value": "how easy is it for you to get a good night's sleep"
},
{
"start_time": "528.35",
"stop_time": "529.92",
"speaker": "Participant",
"value": "it's pretty good"
},
{
"start_time": "530.76",
"stop_time": "532.16",
"speaker": "Participant",
"value": "eh somewhat"
},
{
"start_time": "533.38",
"stop_time": "535.71",
"speaker": "Ellie",
"value": "what are you like when you don't sleep well"
},
{
"start_time": "536.45",
"stop_time": "542.35",
"speaker": "Participant",
"value": "i'm tired <laughter> and i kind of fall asleep during class and whatnot"
},
{
"start_time": "543.18",
"stop_time": "544.61",
"speaker": "Ellie",
"value": "do you feel that way often"
},
{
"start_time": "544.94",
"stop_time": "545.63",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "546.34",
"stop_time": "547.76",
"speaker": "Participant",
"value": "it's my fault though"
},
{
"start_time": "548.27",
"stop_time": "548.93",
"speaker": "Ellie",
"value": "hm"
},
{
"start_time": "549.86",
"stop_time": "551.75",
"speaker": "Ellie",
"value": "when was the last time that happened "
},
{
"start_time": "552.04",
"stop_time": "553.87",
"speaker": "Participant",
"value": "um probably today"
},
{
"start_time": "555.67",
"stop_time": "556.27",
"speaker": "Ellie",
"value": "wow"
},
{
"start_time": "556.72",
"stop_time": "557.21",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "558.53",
"stop_time": "559.19",
"speaker": "Ellie",
"value": "why"
},
{
"start_time": "559.36",
"stop_time": "563.77",
"speaker": "Participant",
"value": "well i fell asleep late so <laughter> it's my fault"
},
{
"start_time": "565.88",
"stop_time": "567.4",
"speaker": "Ellie",
"value": "aw okay"
},
{
"start_time": "568.61",
"stop_time": "570.21",
"speaker": "Ellie",
"value": "do you feel down "
},
{
"start_time": "570.53",
"stop_time": "572.51",
"speaker": "Participant",
"value": "um no i feel pretty happy right now"
},
{
"start_time": "573.58",
"stop_time": "574.74",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "574.82",
"stop_time": "575.32",
"speaker": "Participant",
"value": "mhm"
},
{
"start_time": "575.52",
"stop_time": "577.82",
"speaker": "Ellie",
"value": "have you been diagnosed with depression "
},
{
"start_time": "577.88",
"stop_time": "578.48",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "578.83",
"stop_time": "581.26",
"speaker": "Ellie",
"value": "have you ever been diagnosed with p_t_s_d "
},
{
"start_time": "581.27",
"stop_time": "581.74",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "582.11",
"stop_time": "584.44",
"speaker": "Ellie",
"value": "have you ever served in the military "
},
{
"start_time": "584.5",
"stop_time": "584.85",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "585.3",
"stop_time": "586.21",
"speaker": "Ellie",
"value": "okay "
},
{
"start_time": "588.94",
"stop_time": "590.87",
"speaker": "Ellie",
"value": "how would your best friend describe you "
},
{
"start_time": "592.63",
"stop_time": "595.34",
"speaker": "Participant",
"value": "very friendly and funny"
},
{
"start_time": "597.58",
"stop_time": "598.59",
"speaker": "Participant",
"value": "talkative"
},
{
"start_time": "598.04",
"stop_time": "598.94",
"speaker": "Ellie",
"value": "how do you know them"
},
{
"start_time": "599.3",
"stop_time": "601.61",
"speaker": "Participant",
"value": "um through high school "
},
{
"start_time": "602.49",
"stop_time": "603.24",
"speaker": "Ellie",
"value": "cool"
},
{
"start_time": "604.56",
"stop_time": "606.02",
"speaker": "Ellie",
"value": "how close are you to them"
},
{
"start_time": "606.36",
"stop_time": "613.98",
"speaker": "Participant",
"value": "we're pretty close we try to talk as often as possible maybe once a week i'll try to see them at least every few months"
},
{
"start_time": "614.52",
"stop_time": "615.58",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "620.67",
"stop_time": "622.48",
"speaker": "Ellie",
"value": "what do you think of today's kids"
},
{
"start_time": "623.9",
"stop_time": "629.89",
"speaker": "Participant",
"value": "mm they're everywhere <laughter> um yeah"
},
{
"start_time": "627.9",
"stop_time": "628.82",
"speaker": "Ellie",
"value": "<laughter>"
},
{
"start_time": "630.26",
"stop_time": "632.4",
"speaker": "Participant",
"value": "no comment on that"
},
{
"start_time": "632.83",
"stop_time": "658.87",
"speaker": "Participant",
"value": "they're more smarter they are learning more stuff than we learned back in the day they are learning they're very progressing but when it comes to technology they're not outside they're always on the computer on their phones they don't play outside no more they don't care about nature or the little things in life they just yeah but when it comes to their mentality they argue smarter 'cause the schools are getting better i ain't gonna lie so "
},
{
"start_time": "659.67",
"stop_time": "660.45",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "663.61",
"stop_time": "665.63",
"speaker": "Ellie",
"value": "when was the last time that happened"
},
{
"start_time": "666.49",
"stop_time": "668.08",
"speaker": "Participant",
"value": "when what happened"
},
{
"start_time": "669.3",
"stop_time": "670.7",
"speaker": "Participant",
"value": "i was just"
},
{
"start_time": "669.84",
"stop_time": "671.57",
"speaker": "Ellie",
"value": "let's come back to that later "
},
{
"start_time": "671.54",
"stop_time": "672",
"speaker": "Participant",
"value": "okay"
},
{
"start_time": "671.7",
"stop_time": "673.98",
"speaker": "Ellie",
"value": " when was the last time you felt really happy"
},
{
"start_time": "679.3",
"stop_time": "682.46",
"speaker": "Participant",
"value": "um last weekend i guess"
},
{
"start_time": "685.02",
"stop_time": "686.97",
"speaker": "Ellie",
"value": "i'd love to hear all about it"
},
{
"start_time": "688.05",
"stop_time": "689.25",
"speaker": "Participant",
"value": "right now"
},
{
"start_time": "690.22",
"stop_time": "690.99",
"speaker": "Participant",
"value": "um "
},
{
"start_time": "692.55",
"stop_time": "693.64",
"speaker": "Participant",
"value": "what did i do"
},
{
"start_time": "694.68",
"stop_time": "704.2",
"speaker": "Participant",
"value": "um being with my boyfriend makes me really happy so i was just hanging out with him last weekend and i never really get to see him that much so yeah "
},
{
"start_time": "704.63",
"stop_time": "705.39",
"speaker": "Ellie",
"value": "aw"
},
{
"start_time": "706.18",
"stop_time": "706.87",
"speaker": "Ellie",
"value": "why"
},
{
"start_time": "707.09",
"stop_time": "710.45",
"speaker": "Participant",
"value": "'cause he works i have school different schedules"
},
{
"start_time": "710.89",
"stop_time": "712.3",
"speaker": "Ellie",
"value": "that sounds really hard"
},
{
"start_time": "712.71",
"stop_time": "714.55",
"speaker": "Participant",
"value": "it's not that bad <laughter>"
},
{
"start_time": "717.61",
"stop_time": "718.89",
"speaker": "Ellie",
"value": "how do you know them"
},
{
"start_time": "719.74",
"stop_time": "726.2",
"speaker": "Participant",
"value": "um he's my boyfriend i've been knowing for what about six months now "
},
{
"start_time": "727.07",
"stop_time": "730.84",
"speaker": "Participant",
"value": "we met through a mutual friend um "
},
{
"start_time": "730.87",
"stop_time": "731.34",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "731.36",
"stop_time": "732.86",
"speaker": "Participant",
"value": "in l_a i guess"
},
{
"start_time": "733.9",
"stop_time": "734.99",
"speaker": "Ellie",
"value": "awesome"
},
{
"start_time": "744.7",
"stop_time": "747.52",
"speaker": "Ellie",
"value": "okay i think i've asked everything i need to"
},
{
"start_time": "747.57",
"stop_time": "748.29",
"speaker": "Participant",
"value": "okay"
},
{
"start_time": "749.25",
"stop_time": "751.28",
"speaker": "Ellie",
"value": "thanks for sharing your thoughts with me "
},
{
"start_time": "751.34",
"stop_time": "752.41",
"speaker": "Participant",
"value": "you're welcome"
},
{
"start_time": "752.45",
"stop_time": "753.25",
"speaker": "Ellie",
"value": "goodbye"
},
{
"start_time": "753.31",
"stop_time": "754.05",
"speaker": "Participant",
"value": "bye"
}
] |