File size: 37,646 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 | [
{
"start_time": "26.276",
"stop_time": "48.696",
"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 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": "49.256",
"stop_time": "50.406",
"speaker": "Ellie",
"value": "how are you doing today"
},
{
"start_time": "50.686",
"stop_time": "51.836",
"speaker": "Participant",
"value": "okay how 'bout yourself"
},
{
"start_time": "52.576",
"stop_time": "54.136",
"speaker": "Ellie",
"value": "i'm great thanks"
},
{
"start_time": "54.816",
"stop_time": "56.236",
"speaker": "Ellie",
"value": "where are you from originally"
},
{
"start_time": "56.586",
"stop_time": "57.996",
"speaker": "Participant",
"value": "here in california"
},
{
"start_time": "58.216",
"stop_time": "58.936",
"speaker": "Ellie",
"value": "really"
},
{
"start_time": "59.066",
"stop_time": "59.756",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "60.526",
"stop_time": "62.936",
"speaker": "Ellie",
"value": "what are some things you really like about l_a "
},
{
"start_time": "63.396",
"stop_time": "67.696",
"speaker": "Participant",
"value": "oh well that it's big and broad there's a lot to do a lot of um"
},
{
"start_time": "69.416",
"stop_time": "72.266",
"speaker": "Participant",
"value": "um job opportunities than other states"
},
{
"start_time": "72.766",
"stop_time": "77.626",
"speaker": "Participant",
"value": "um pretty much that it's big and there's a lot you can do here"
},
{
"start_time": "79.056",
"stop_time": "79.866",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "80.146",
"stop_time": "82.376",
"speaker": "Ellie",
"value": "what are some things you don't really like about l_a"
},
{
"start_time": "83.006",
"stop_time": "96.466",
"speaker": "Participant",
"value": "traffic um maybe the violence rate bad news even though you know you wanna know what's going on in your environment but you still have to watch it so you can you know look out to see what's going on on a daily basis"
},
{
"start_time": "96.776",
"stop_time": "97.426",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "98.046",
"stop_time": "99.806",
"speaker": "Ellie",
"value": "what'd you study at school"
},
{
"start_time": "100.346",
"stop_time": "107.136",
"speaker": "Participant",
"value": "sociology i have a um two year degree in liberal arts but my major was sociology"
},
{
"start_time": "107.556",
"stop_time": "108.456",
"speaker": "Ellie",
"value": "nice"
},
{
"start_time": "109.366",
"stop_time": "110.676",
"speaker": "Ellie",
"value": "are you still working in that"
},
{
"start_time": "110.926",
"stop_time": "113.656",
"speaker": "Participant",
"value": "no i'm actually an m_t_a bus operator"
},
{
"start_time": "115.106",
"stop_time": "117.176",
"speaker": "Ellie",
"value": "what's your dream job"
},
{
"start_time": "118.216",
"stop_time": "143.306",
"speaker": "Participant",
"value": "well since metro is steady growing um my dream job is to move up in the company and i'm about to actually start some classes for supervisory next week so um 'cause they look to promote within the company so that's the good thing there's a lot of opportunities at metro where you can take classes and they'll pay for your tuition and things of that nature"
},
{
"start_time": "135.296",
"stop_time": "136.006",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "143.856",
"stop_time": "145.856",
"speaker": "Ellie",
"value": "that sounds like a great situation "
},
{
"start_time": "146.156",
"stop_time": "146.846",
"speaker": "Participant",
"value": "thanks"
},
{
"start_time": "147.096",
"stop_time": "148.296",
"speaker": "Ellie",
"value": "how hard is that"
},
{
"start_time": "148.596",
"stop_time": "167.066",
"speaker": "Participant",
"value": "well it's not actually hard as right now it's easy if you take advantage of it right now 'cause they look to promote within so you know so since i'm already working there that's a good thing so it's good to go ahead and take the classes that you need that you're interested in and go ahead and move up the ladder as soon as possible "
},
{
"start_time": "167.186",
"stop_time": "168.376",
"speaker": "Ellie",
"value": "that makes sense "
},
{
"start_time": "170.696",
"stop_time": "172.706",
"speaker": "Ellie",
"value": "do you consider yourself an introvert"
},
{
"start_time": "173.236",
"stop_time": "174.446",
"speaker": "Participant",
"value": "what do you mean i'm sorry"
},
{
"start_time": "176.176",
"stop_time": "177.806",
"speaker": "Ellie",
"value": "let's come back to that later"
},
{
"start_time": "177.886",
"stop_time": "178.476",
"speaker": "Participant",
"value": "okay"
},
{
"start_time": "178.556",
"stop_time": "180.266",
"speaker": "Ellie",
"value": "what do you do to relax"
},
{
"start_time": "180.696",
"stop_time": "188.076",
"speaker": "Participant",
"value": "read take a long walk hot bath meditate just close my eyes sometimes"
},
{
"start_time": "189.806",
"stop_time": "190.576",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "191.456",
"stop_time": "193.856",
"speaker": "Ellie",
"value": "how are you at controlling your temper "
},
{
"start_time": "194.376",
"stop_time": "205.956",
"speaker": "Participant",
"value": "i'm pretty much good because see by me being a bus operator you run into circumstances and situations you gotta remain calm and still remain professional at the same time"
},
{
"start_time": "206.166",
"stop_time": "206.756",
"speaker": "Ellie",
"value": "right"
},
{
"start_time": "207.436",
"stop_time": "208.586",
"speaker": "Ellie",
"value": "how hard is that"
},
{
"start_time": "209.186",
"stop_time": "235.606",
"speaker": "Participant",
"value": "well i look at it like it it goes with i mean it comes with experience you know um you do something on a continuous basis usually you some somewhere down the line you become good at it you know so i i look at it like that so i've been driving for years and dealing with the public so it's just how you handle circumstances you you know treat people like you wanna be treated"
},
{
"start_time": "237.676",
"stop_time": "239.416",
"speaker": "Ellie",
"value": "has that gotten you in trouble"
},
{
"start_time": "240.566",
"stop_time": "242.916",
"speaker": "Participant",
"value": "no i'm pretty good at it now"
},
{
"start_time": "243.406",
"stop_time": "250.296",
"speaker": "Participant",
"value": "maybe when i was younger you know you as you get older you get wiser you learn different things and i'm still learning today"
},
{
"start_time": "243.946",
"stop_time": "244.936",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "251.066",
"stop_time": "251.976",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "253.236",
"stop_time": "256.206",
"speaker": "Ellie",
"value": "who's someone that's been a positive influence in your life"
},
{
"start_time": "257.896",
"stop_time": "273.226",
"speaker": "Participant",
"value": "i would say my family you know my kids you know even though you know i had been having a lot of deaths around me but that's just go that's part of the life experience you know you born here but you gotta leave here one day but"
},
{
"start_time": "274.206",
"stop_time": "279.706",
"speaker": "Participant",
"value": "my kids will keep me you know sane and you know i love them and my family "
},
{
"start_time": "280.836",
"stop_time": "282.856",
"speaker": "Ellie",
"value": "that sounds like a great situation"
},
{
"start_time": "282.896",
"stop_time": "284.116",
"speaker": "Participant",
"value": "thank you"
},
{
"start_time": "284.356",
"stop_time": "286.466",
"speaker": "Ellie",
"value": "do you find it easy to be a parent"
},
{
"start_time": "286.786",
"stop_time": "288.106",
"speaker": "Participant",
"value": "no <laughter>"
},
{
"start_time": "289.026",
"stop_time": "290.836",
"speaker": "Ellie",
"value": "what's the hardest thing about being a parent"
},
{
"start_time": "291.596",
"stop_time": "306.586",
"speaker": "Participant",
"value": "um setting good examples you know because you're the first teacher you know and you wanna set a positive good example for your kids and i think that's a good thing and it starts at home"
},
{
"start_time": "307.056",
"stop_time": "307.846",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "308.286",
"stop_time": "310.456",
"speaker": "Ellie",
"value": "can you give me an example of that"
},
{
"start_time": "311.866",
"stop_time": "313.326",
"speaker": "Participant",
"value": "well um"
},
{
"start_time": "314.506",
"stop_time": "343.856",
"speaker": "Participant",
"value": "by you being the first teacher your kids you're you're their one that they see on a daily basis when they wake up so whatever's been taught in the home they lookin' and learning every day you know whether it's a home school you know people kids have a tendency to do things what they see you know what i mean so you try to keep it positive teach 'em good morals and values and how to get along with other people regardless of race and you know different things of that nature"
},
{
"start_time": "344.226",
"stop_time": "344.916",
"speaker": "Ellie",
"value": "mhm "
},
{
"start_time": "345.266",
"stop_time": "346.856",
"speaker": "Ellie",
"value": "tell me about your kids"
},
{
"start_time": "347.426",
"stop_time": "354.696",
"speaker": "Participant",
"value": "i have a um four and a half year old son i have a seven year old daughter and i also have a twenty three year old"
},
{
"start_time": "355.506",
"stop_time": "356.116",
"speaker": "Ellie",
"value": "aw"
},
{
"start_time": "356.156",
"stop_time": "357.516",
"speaker": "Participant",
"value": "yeah i'm 'bout to be"
},
{
"start_time": "358.076",
"stop_time": "368.166",
"speaker": "Participant",
"value": "well my daughter's pregnant with a boy she has three um little girls so i have three grandkids and um one on the way which is a boy this time"
},
{
"start_time": "362.726",
"stop_time": "363.376",
"speaker": "Ellie",
"value": "wow"
},
{
"start_time": "368.236",
"stop_time": "369.286",
"speaker": "Ellie",
"value": "awesome "
},
{
"start_time": "369.296",
"stop_time": "370.436",
"speaker": "Participant",
"value": "yeah thank you"
},
{
"start_time": "373.476",
"stop_time": "375.716",
"speaker": "Ellie",
"value": "what's the hardest thing about being a parent"
},
{
"start_time": "376.376",
"stop_time": "378.176",
"speaker": "Participant",
"value": "the hardest thing is"
},
{
"start_time": "378.706",
"stop_time": "385.946",
"speaker": "Participant",
"value": "well right now i'm a single parent so that makes it hard alone itself you know and"
},
{
"start_time": "384.796",
"stop_time": "385.466",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "386.676",
"stop_time": "410.386",
"speaker": "Participant",
"value": "they can be expensive at times you know it depends on the person's situation you know the whether they have help or a job you know things of that nature to help the situation better but it's hard you know but you i try to you know keep a job keep food in the house you know just maintain and support my kids the best way i can"
},
{
"start_time": "411.816",
"stop_time": "413.796",
"speaker": "Ellie",
"value": "yeah i see what you mean"
},
{
"start_time": "415.866",
"stop_time": "418.616",
"speaker": "Ellie",
"value": "what's one of your most memorable experiences "
},
{
"start_time": "419.696",
"stop_time": "422.736",
"speaker": "Participant",
"value": "with my kids or just period"
},
{
"start_time": "424.496",
"stop_time": "425.746",
"speaker": "Ellie",
"value": "whatever comes to your mind"
},
{
"start_time": "428.976",
"stop_time": "439.286",
"speaker": "Participant",
"value": "what's memorable for me is that i'm the only one in my family with a degree so it's kinda like yeah it's kinda even though i'm the baby of ten kids you know"
},
{
"start_time": "434.666",
"stop_time": "435.216",
"speaker": "Ellie",
"value": "wow"
},
{
"start_time": "439.796",
"stop_time": "452.616",
"speaker": "Participant",
"value": "and i've always kept that in the back of my mind even though everybody well pretty much my whole family have decent job but i'm the only one with a degree so i kinda like gave myself a pat on the back like you know"
},
{
"start_time": "453.216",
"stop_time": "459.386",
"speaker": "Participant",
"value": "you know i just that's the only thing i remember graduating you know and my family there and to support me "
},
{
"start_time": "460.276",
"stop_time": "462.196",
"speaker": "Ellie",
"value": "that's so good to hear"
},
{
"start_time": "462.226",
"stop_time": "463.086",
"speaker": "Participant",
"value": "thank you"
},
{
"start_time": "463.316",
"stop_time": "465.256",
"speaker": "Ellie",
"value": "how did you feel in that moment "
},
{
"start_time": "465.436",
"stop_time": "501.646",
"speaker": "Participant",
"value": "happy that i accomplished something you know just even though it may not be much but it was better than just have having a high school diploma and i had um i was working on my bachelor's degree but i ended up in a bad car accident i never went back i got distracted and you know i was working at the same time but i was just like moreso i needed income than than um schooling at that time because i was a young parent you know 'cause i had my daughter at seventeen so i was like i needed the money to support her but i never went back but i feel like it's never too late so"
},
{
"start_time": "502.156",
"stop_time": "509.496",
"speaker": "Participant",
"value": "i feel like i'll take some classes now that i'm with metro to help me move up the ladder so that's why i'm starting a class next week"
},
{
"start_time": "502.416",
"stop_time": "503.056",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "510.246",
"stop_time": "512.206",
"speaker": "Ellie",
"value": "that sounds like a great situation "
},
{
"start_time": "512.196",
"stop_time": "513.446",
"speaker": "Participant",
"value": "thank you"
},
{
"start_time": "513.796",
"stop_time": "516.806",
"speaker": "Ellie",
"value": "what advice would you give yourself ten or twenty years ago"
},
{
"start_time": "517.656",
"stop_time": "518.596",
"speaker": "Participant",
"value": "hm"
},
{
"start_time": "522.626",
"stop_time": "525.676",
"speaker": "Participant",
"value": "well the advice i would've gave myself"
},
{
"start_time": "526.306",
"stop_time": "531.606",
"speaker": "Participant",
"value": "that i probably wouldn't have been a young mother at a young age and that"
},
{
"start_time": "532.826",
"stop_time": "533.886",
"speaker": "Participant",
"value": "i probably would've"
},
{
"start_time": "534.776",
"stop_time": "546.006",
"speaker": "Participant",
"value": "stayed in school you know not let the accident just distract me and not i would've remained in school i probably wouldn't have had kids early you know um"
},
{
"start_time": "546.916",
"stop_time": "553.796",
"speaker": "Participant",
"value": "rather i probably would've stayed in school and probably have a part time job or something just i just feel like um"
},
{
"start_time": "554.516",
"stop_time": "562.826",
"speaker": "Participant",
"value": "education is a excellent thing for a person just having knowledge and learning different things keeping your mind open to learning new ideas every day"
},
{
"start_time": "563.286",
"stop_time": "577.666",
"speaker": "Participant",
"value": "so i think that's a plus you know in anybody's shoes just to better they selves you know through education maybe to um maybe promote within your company or whatever the case may be that they help better your career"
},
{
"start_time": "563.896",
"stop_time": "564.526",
"speaker": "Ellie",
"value": "right"
},
{
"start_time": "578.766",
"stop_time": "579.786",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "580.226",
"stop_time": "582.316",
"speaker": "Ellie",
"value": "could you have done anything to avoid it"
},
{
"start_time": "582.756",
"stop_time": "584.586",
"speaker": "Participant",
"value": "i'm not quite sure um"
},
{
"start_time": "585.276",
"stop_time": "606.146",
"speaker": "Participant",
"value": "you learn from your mistakes you know but at the same time you don't continue to make the same ones i feel like it's okay to make a mistake but long as you do something to change you know um like myself even though i'm going to school late but still i'm going you know i wanna better myself career wise so "
},
{
"start_time": "606.156",
"stop_time": "609.356",
"speaker": "Ellie",
"value": "yeah there are always tradeoffs in life aren't there "
},
{
"start_time": "609.306",
"stop_time": "609.876",
"speaker": "Participant",
"value": "yes"
},
{
"start_time": "613.396",
"stop_time": "616.776",
"speaker": "Ellie",
"value": "when was the last time you argued with someone and what was it about"
},
{
"start_time": "618.846",
"stop_time": "620.446",
"speaker": "Participant",
"value": "my oldest daughter"
},
{
"start_time": "621.066",
"stop_time": "623.076",
"speaker": "Participant",
"value": "we had a argument because"
},
{
"start_time": "625.116",
"stop_time": "625.816",
"speaker": "Participant",
"value": "just"
},
{
"start_time": "626.456",
"stop_time": "631.046",
"speaker": "Participant",
"value": "the life that she's living right now and the things that she's going through"
},
{
"start_time": "631.576",
"stop_time": "638.786",
"speaker": "Participant",
"value": "and um i had told her that she just needed to make some changes to better her situation"
},
{
"start_time": "639.106",
"stop_time": "645.386",
"speaker": "Participant",
"value": "and uh we got into an argument because you know how your kids sometimes don't wanna hear it you know"
},
{
"start_time": "646.136",
"stop_time": "650.876",
"speaker": "Participant",
"value": "hear the stuff that you're saying even though it's true or "
},
{
"start_time": "652.226",
"stop_time": "661.706",
"speaker": "Participant",
"value": "or they just you know well they just don't wanna hear it you know they may be going through something they don't wanna hear but we got into a argument about it but"
},
{
"start_time": "656.076",
"stop_time": "656.846",
"speaker": "Ellie",
"value": "right"
},
{
"start_time": "664.236",
"stop_time": "666.186",
"speaker": "Participant",
"value": "that just happened you know"
},
{
"start_time": "666.536",
"stop_time": "668.006",
"speaker": "Participant",
"value": "i just told her i'm not"
},
{
"start_time": "667.146",
"stop_time": "668.156",
"speaker": "Ellie",
"value": "how close are you to them"
},
{
"start_time": "668.336",
"stop_time": "669.216",
"speaker": "Participant",
"value": "i'm sorry"
},
{
"start_time": "669.266",
"stop_time": "670.886",
"speaker": "Ellie",
"value": "how close are you to them"
},
{
"start_time": "671.316",
"stop_time": "672.656",
"speaker": "Participant",
"value": "very close"
},
{
"start_time": "673.066",
"stop_time": "680.376",
"speaker": "Participant",
"value": "very close it's just that the the situation my daughter's in she just needs to make some changes to better her her life"
},
{
"start_time": "681.466",
"stop_time": "682.886",
"speaker": "Participant",
"value": "and I'll be telling"
},
{
"start_time": "682.276",
"stop_time": "683.346",
"speaker": "Ellie",
"value": "tell me more about that"
},
{
"start_time": "683.386",
"stop_time": "684.696",
"speaker": "Participant",
"value": "she's um"
},
{
"start_time": "685.866",
"stop_time": "703.456",
"speaker": "Participant",
"value": "she's kinda like stubborn in her own way you know i was raised to listen to your mom you know your mom's not gonna tell you nothing wrong and i've been telling her over the years you know different things and it's it's kinda like i was talking to a wall because she she did the opposite"
},
{
"start_time": "702.856",
"stop_time": "703.406",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "704.066",
"stop_time": "719.316",
"speaker": "Participant",
"value": "and now she's she regretting it you know 'cause she's like my mom told me this you know mom i'm doing the opposite so i guess she gotta bump her head a couple of times to get it it's kinda like i done told you i done left it alone and now it's up to you to make the change"
},
{
"start_time": "720.286",
"stop_time": "721.096",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "721.606",
"stop_time": "723.226",
"speaker": "Ellie",
"value": "how hard is that"
},
{
"start_time": "723.636",
"stop_time": "740.456",
"speaker": "Participant",
"value": "it's very frustrating because it's like i'm talking to a wall and she's not hearing me and i'm like it seem like it's taking forever for her to change but it's left up to the individual whenever they're ready you know what i mean once the person get tired of something they'll make it change it may not be when you want it to happen but"
},
{
"start_time": "738.576",
"stop_time": "739.186",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "742.366",
"stop_time": "742.946",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "742.896",
"stop_time": "744.506",
"speaker": "Participant",
"value": "the ball is her court you know"
},
{
"start_time": "745.066",
"stop_time": "746.836",
"speaker": "Participant",
"value": "i only can do so much"
},
{
"start_time": "745.566",
"stop_time": "746.356",
"speaker": "Ellie",
"value": "i'm sorry"
},
{
"start_time": "748.916",
"stop_time": "750.406",
"speaker": "Ellie",
"value": "i see what you mean"
},
{
"start_time": "754.056",
"stop_time": "756.366",
"speaker": "Ellie",
"value": "how easy is it for you to get a good night's sleep"
},
{
"start_time": "756.786",
"stop_time": "757.876",
"speaker": "Participant",
"value": "oh wow"
},
{
"start_time": "759.366",
"stop_time": "761.846",
"speaker": "Participant",
"value": "i have my days um"
},
{
"start_time": "763.586",
"stop_time": "774.296",
"speaker": "Participant",
"value": "since i have two little ones um i kinda like trained them to go to bed at eight o clock because you know they gotta go to school and i think it's important to have a good night's rest because it kinda like"
},
{
"start_time": "774.556",
"stop_time": "795.456",
"speaker": "Participant",
"value": "<clears throat> it it kinda like gets you ready for the next day or you know how you gonna feel if you rested what type of person you'll be that day you know 'cause everybody have they days whether they're good or bad but that's just a part of life and i feel like if you had a good night's good good night's rest hopefully you'll have a good day you know"
},
{
"start_time": "795.846",
"stop_time": "796.536",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "797.806",
"stop_time": "799.536",
"speaker": "Ellie",
"value": "do you feel that way often"
},
{
"start_time": "800.386",
"stop_time": "812.076",
"speaker": "Participant",
"value": "pretty much you know i need my rest because i'm out there driving that bus and dealing with all these people and you know the job itself if very stressful so i feel like if i'm rested it'll help me"
},
{
"start_time": "812.586",
"stop_time": "813.456",
"speaker": "Ellie",
"value": "right"
},
{
"start_time": "813.916",
"stop_time": "816.256",
"speaker": "Ellie",
"value": "what are you like when you don't sleep well"
},
{
"start_time": "816.806",
"stop_time": "821.326",
"speaker": "Participant",
"value": "what am i like irritated tired um lazy"
},
{
"start_time": "822.486",
"stop_time": "823.416",
"speaker": "Participant",
"value": "you know"
},
{
"start_time": "824.656",
"stop_time": "831.066",
"speaker": "Participant",
"value": "feel like i wanna lay down probably go to sleep <laughter> get the rest that i need but <laughter>"
},
{
"start_time": "829.426",
"stop_time": "830.346",
"speaker": "Ellie",
"value": "<laughter>"
},
{
"start_time": "832.276",
"stop_time": "833.956",
"speaker": "Ellie",
"value": "what do you do when you're annoyed"
},
{
"start_time": "836.886",
"stop_time": "838.536",
"speaker": "Participant",
"value": "i never thought about that"
},
{
"start_time": "838.936",
"stop_time": "840.466",
"speaker": "Participant",
"value": "i just you know"
},
{
"start_time": "841.016",
"stop_time": "846.046",
"speaker": "Participant",
"value": "'cause like i said you know everybody have their moments they do i never thought about that"
},
{
"start_time": "847.126",
"stop_time": "847.636",
"speaker": "Participant",
"value": "hm"
},
{
"start_time": "849.506",
"stop_time": "850.796",
"speaker": "Ellie",
"value": "hm okay"
},
{
"start_time": "854.916",
"stop_time": "856.706",
"speaker": "Ellie",
"value": "have you ever served in the military "
},
{
"start_time": "856.746",
"stop_time": "857.206",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "858.816",
"stop_time": "860.986",
"speaker": "Ellie",
"value": "have you been diagnosed with depression "
},
{
"start_time": "860.986",
"stop_time": "861.706",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "862.616",
"stop_time": "863.436",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "866.196",
"stop_time": "868.196",
"speaker": "Ellie",
"value": "how would you best friend describe you "
},
{
"start_time": "868.486",
"stop_time": "880.676",
"speaker": "Participant",
"value": "i don't really have a best friend but a person that i deal with and i used to work with um she would probably tell you that i'm very um outgoing a go getter"
},
{
"start_time": "881.376",
"stop_time": "883.506",
"speaker": "Participant",
"value": "dependable responsible"
},
{
"start_time": "884.736",
"stop_time": "886.606",
"speaker": "Participant",
"value": "i'm a um people person"
},
{
"start_time": "888.076",
"stop_time": "891.006",
"speaker": "Participant",
"value": "i get along with others you know i'm kinda like"
},
{
"start_time": "892.956",
"stop_time": "893.816",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "897.276",
"stop_time": "899.316",
"speaker": "Participant",
"value": "i leave a good a a good mark"
},
{
"start_time": "900.296",
"stop_time": "900.906",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "900.936",
"stop_time": "904.666",
"speaker": "Participant",
"value": "whether i know you or not if you was to you know like "
},
{
"start_time": "904.966",
"stop_time": "908.136",
"speaker": "Participant",
"value": "like you and i now you know i um"
},
{
"start_time": "909.166",
"stop_time": "913.586",
"speaker": "Participant",
"value": "you'd probably say oh she seems like a nice young lady or whatever you know something like that"
},
{
"start_time": "913.606",
"stop_time": "914.146",
"speaker": "Ellie",
"value": "right"
},
{
"start_time": "915.316",
"stop_time": "916.246",
"speaker": "Ellie",
"value": "that's great"
},
{
"start_time": "916.446",
"stop_time": "917.456",
"speaker": "Participant",
"value": "thank you"
},
{
"start_time": "917.446",
"stop_time": "920.566",
"speaker": "Ellie",
"value": "when was the last time you felt really happy"
},
{
"start_time": "922.196",
"stop_time": "922.956",
"speaker": "Participant",
"value": "well"
},
{
"start_time": "924.066",
"stop_time": "929.956",
"speaker": "Participant",
"value": "i try to stay happy i'd rather be happy than sad my kids keep me going you know what i mean"
},
{
"start_time": "931.136",
"stop_time": "937.506",
"speaker": "Participant",
"value": "especially when i go to pick them up from school or their being hey mom you know that just kinda make my day"
},
{
"start_time": "931.146",
"stop_time": "931.796",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "938.046",
"stop_time": "942.366",
"speaker": "Participant",
"value": "just them run up to me you know and be happy and excited you know what i mean "
},
{
"start_time": "938.386",
"stop_time": "938.956",
"speaker": "Ellie",
"value": "aw"
},
{
"start_time": "943.246",
"stop_time": "944.026",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "945.066",
"stop_time": "946.936",
"speaker": "Ellie",
"value": "that's so good to hear "
},
{
"start_time": "946.936",
"stop_time": "947.706",
"speaker": "Participant",
"value": "thank you"
},
{
"start_time": "950.726",
"stop_time": "953.526",
"speaker": "Ellie",
"value": "okay i think i've asked everything i need to"
},
{
"start_time": "954.266",
"stop_time": "956.126",
"speaker": "Ellie",
"value": "thanks for sharing your thoughts with me"
},
{
"start_time": "956.126",
"stop_time": "958.636",
"speaker": "Participant",
"value": "you're more than welcome you have a good day"
},
{
"start_time": "958.656",
"stop_time": "959.526",
"speaker": "Ellie",
"value": "goodbye "
},
{
"start_time": "959.486",
"stop_time": "960.376",
"speaker": "Participant",
"value": "goodbye"
}
] |