diff --git "a/notebooks/web_vtt.ipynb" "b/notebooks/web_vtt.ipynb"
deleted file mode 100644--- "a/notebooks/web_vtt.ipynb"
+++ /dev/null
@@ -1,388 +0,0 @@
-{
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# WebVTT Reading and Chunking Test"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Pure `webvtt-py` as Proof-of-concept"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 1,
- "metadata": {},
- "outputs": [],
- "source": [
- "from datetime import datetime, timedelta\n",
- "from functools import partial\n",
- "from html import escape\n",
- "from io import BytesIO\n",
- "from IPython.display import display_html\n",
- "from itertools import chain\n",
- "import re\n",
- "from webvtt import Caption, WebVTT\n",
- "from webvtt.models import Timestamp\n",
- "from zoneinfo import ZoneInfo\n",
- "\n",
- "display_html = partial(display_html, raw=True)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "FILE_PATH = \"GMT20250411-223535_Recording.transcript.vtt\"\n",
- "TIME_ZONE = ZoneInfo(\"America/New_York\")\n",
- "BASE_TIME = datetime(2025, 4, 11, hour=22, minute=35, second=35, tzinfo=ZoneInfo(\"GMT\")).astimezone(TIME_ZONE)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 3,
- "metadata": {},
- "outputs": [],
- "source": [
- "with open(FILE_PATH, \"rb\") as file:\n",
- " web_vtt = WebVTT.from_buffer(BytesIO(file.read()))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 4,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/html": [
- "
- __class__
- __delattr__
- __dict__
- __dir__
- __doc__
- __eq__
- __format__
- __ge__
- __getattribute__
- __getitem__
- __getstate__
- __gt__
- __hash__
- __init__
- __init_subclass__
- __le__
- __len__
- __lt__
- __module__
- __ne__
- __new__
- __reduce__
- __reduce_ex__
- __repr__
- __setattr__
- __sizeof__
- __str__
- __subclasshook__
- __weakref__
- _get_destination_file
- _get_lines
- _has_bom
- captions
- content
- encoding
- file
- footer_comments
- from_buffer
- from_sbv
- from_srt
- from_string
- header_comments
- iter_slice
- read
- read_buffer
- save
- save_as_srt
- styles
- total_length
- write
"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "display_html(\"\".join(chain(\"\", (f\"- {escape(member)}
\" for member in dir(web_vtt)), \"
\")))"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 5,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/html": [
- "\n",
- " Caption #344\n",
- " \n",
- " - Start: Friday, April 11, 2025, 07:36:54 PM EDT
\n",
- " - Speaker: CUNY Tech Prep (CTP)
\n",
- " - Speech: Alright. You can pick the rooms. Now go into your rooms.
\n",
- " - End: Friday, April 11, 2025, 07:36:57 PM EDT
\n",
- "
\n",
- " "
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "speaker_speech_pattern = re.compile(\"(?:([^:]+): )?(.*)\")\n",
- "\n",
- "match web_vtt.captions[343]:\n",
- " case Caption(identifier=identifier, start_time=start_time, end_time=end_time, text=text):\n",
- " match speaker_speech_pattern.search(text).groups():\n",
- " case (speaker, speech):\n",
- " display_html(f\"\"\"\n",
- " Caption #{identifier}\n",
- " \n",
- " - Start: {BASE_TIME + timedelta(**start_time.__dict__):%A, %B %d, %Y, %I:%M:%S %p %Z}
\n",
- " - Speaker: {escape(speaker)}
\n",
- " - Speech: {escape(speech)}
\n",
- " - End: {BASE_TIME + timedelta(**end_time.__dict__):%A, %B %d, %Y, %I:%M:%S %p %Z}
\n",
- "
\n",
- " \"\"\")"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Chunking\n",
- "\n",
- "In order for chunking to produce bits with useful context, we must not only use the caption (frame) itself, but bundle it with its surrounding frames (before and after messages)."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 6,
- "metadata": {},
- "outputs": [],
- "source": [
- "from more_itertools import windowed"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 7,
- "metadata": {},
- "outputs": [],
- "source": [
- "CHUNK_FRAMES_OVERLAP = 1\n",
- "CHUNK_FRAMES_WINDOW = 5"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 8,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/html": [
- "A |
B |
C |
D |
E |
F |
G |
H |
I |
J |
K |
L |
M |
N |
O |
P |
Q |
R |
S |
T |
U |
V |
W |
X |
Y |
Z |
"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "items = tuple(chr(code_point) for code_point in range(ord('A'), ord('[')))\n",
- "display_html(f\"{\"\".join(map(\"{} |
\".format, items))}
\")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 9,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/html": [
- "A | B | C | D | E |
E | F | G | H | I |
I | J | K | L | M |
M | N | O | P | Q |
Q | R | S | T | U |
U | V | W | X | Y |
Y | Z | | | |
"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "chunks = tuple(windowed(items, CHUNK_FRAMES_WINDOW, step=(CHUNK_FRAMES_WINDOW - CHUNK_FRAMES_OVERLAP)))\n",
- "display_html(f\"{\"\".join(f\"{\"\".join(f\"{item if item else \"\"} | \" for item in chunk)}
\" for chunk in chunks)}
\")"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Using the Dynamically Registered `WebVTTMimeTypeHandler` Class"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 10,
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "\u001b[32m2025-04-21 22:09:42.938\u001b[0m | \u001b[34m\u001b[1mDEBUG \u001b[0m | \u001b[36mctp_slack_bot.core.config\u001b[0m:\u001b[36m__init__\u001b[0m:\u001b[36m14\u001b[0m - \u001b[34m\u001b[1mCreated Settings\u001b[0m\n"
- ]
- }
- ],
- "source": [
- "from datetime import datetime\n",
- "from hashlib import sha256\n",
- "from zoneinfo import ZoneInfo\n",
- "\n",
- "from ctp_slack_bot.containers import Container\n",
- "from ctp_slack_bot.models import WebVTTContent\n",
- "\n",
- "\n",
- "container = Container()\n",
- "mime_type_handler_factory = container.mime_type_handler_factory"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "metadata": {},
- "outputs": [],
- "source": [
- "FILE_PATH = \"GMT20250411-223535_Recording.transcript.vtt\"\n",
- "TIME_ZONE = ZoneInfo(\"America/New_York\")\n",
- "MODIFICATION_TIME = datetime(2025, 4, 11, hour=22, minute=35, second=35, tzinfo=ZoneInfo(\"GMT\")).astimezone(TIME_ZONE)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "metadata": {},
- "outputs": [],
- "source": [
- "with open(FILE_PATH, \"rb\") as file:\n",
- " bytes = file.read()\n",
- " web_vtt_content = mime_type_handler_factory(\"text/vtt\").from_bytes(sha256(bytes).hexdigest(), {\"modification_time\": MODIFICATION_TIME}, bytes)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 13,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "datetime.datetime(2025, 4, 11, 22, 35, 35, tzinfo=datetime.timezone.utc)"
- ]
- },
- "execution_count": 13,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "web_vtt_content.start_time"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 14,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "(Chunk(text=\"iyeshia: For the workshop. We want to set you up.\\n\\niyeshia: Thank you, Kevin, for a question. We want to set you up for success in year one. And so this workshop is to help you kind of like\\n\\niyeshia: figure out, or how to adjust, as you're coming into your careers what to expect like your 30 days of work, 60 days of work, 90 days of work when you are starting your full time roles. So with that, said, let us get started.\\n\\niyeshia: So the topic, of course, is going to be discussing things of like the onboarding process of what it looks like when you start your jobs. How to maneuver or move around in your workplace environments. We'll discuss negotiating raises, because last time we didn't negotiating offers. So now we pass that you already got the offer. So now we'd be at the\\n\\niyeshia: the race card after that year. Don't try to come into your job already. 5 days in somebody to raise. Wait, and then from there we'll do activity on asking for feedback when you have, like your supervisor or manager, and you want to discuss things like that.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='1-5', metadata={'start': datetime.datetime(2025, 4, 11, 22, 35, 35, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 36, 35, 379000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: the race card after that year. Don't try to come into your job already. 5 days in somebody to raise. Wait, and then from there we'll do activity on asking for feedback when you have, like your supervisor or manager, and you want to discuss things like that.\\n\\niyeshia: So let's kick it off with the onboarding process.\\n\\niyeshia: So with this, what you can expect ideally when you start your your job. There could be some type of welcome package. They might have a folder. They might have an email electronically or things like that. But it's gonna describe the details of like the company's environment. What your 1st day, or your 1st week or 1st month, a couple of months, might look like. As you're starting your onboarding process and the paperwork they might even show with you on the 1st day\\n\\niyeshia: work. You might be paired up with a Buddy or other people who might be hired at the same day, or maybe someone who was hired a year before, and they might be shadowing you to help you join and to get comfortable with your work environment.\\n\\niyeshia: and then also, your manager will. Hopefully, our supervisor would let you know what to expect. As you're starting your new\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='5-9', metadata={'start': datetime.datetime(2025, 4, 11, 22, 36, 20, 930000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 37, 23, 640000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: and then also, your manager will. Hopefully, our supervisor would let you know what to expect. As you're starting your new\\n\\niyeshia: job or career, and then from there, if you're unsure about your onboarding process as you're starting off, please ask questions to your manager or supervisor. The best part is to ask as many questions as you can. You're new, you're learning. They understand that. So they want to hear from you and your input\\n\\niyeshia: from there, I would say, I'm just looking at the\\n\\niyeshia: the chat. Yes, prepare for a lot of paperwork. Yes, I mean W. 2 W. Fours. They might have you fill out all those things. And that was 2. Okay, all right, Kevin.\\n\\niyeshia: So from there we'll kick it off. So an idea of what that could look like for you from 30 days to 60 days to 90 days to infinity and beyond like buzz light year, but from there you would hopefully to have intros with your your team, your manager, different departments. When you're starting\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='9-13', metadata={'start': datetime.datetime(2025, 4, 11, 22, 37, 17, 82000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 38, 21, 199000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: So from there we'll kick it off. So an idea of what that could look like for you from 30 days to 60 days to 90 days to infinity and beyond like buzz light year, but from there you would hopefully to have intros with your your team, your manager, different departments. When you're starting\\n\\niyeshia: they'll go over etiquette with you of like what you can expect. At the job that can include your attire, your desk hygiene communication, checking in with managers or teams.\\n\\niyeshia: Once you, after the 30 days we get to maybe days, 60 days, and then you're able to develop like your needs. Gain a better understanding of the company, develop plans and deliverables and outcomes. And then you go into your 90 days of being on the job where you're kind of learning your role. You're kind of getting adjust, you're being more effective and being becoming more independent.\\n\\niyeshia: And then from there you be able to understand, like, after the 90 days that you're kind of like settled in maybe months 4 to 6, or maybe the whole year. You should be settled into your role, understanding what's going on understanding how different departments move and things like that. So this is just the overview of what that looks like. It's not necessarily concrete, because every job is different.\\n\\niyeshia: But this is just to give an idea of what you can expect of that. And please just be mindful like with every workshop. I'm definitely going to send you the Powerpoint at the end. So if you want to look over that on your own time, you definitely can.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='13-17', metadata={'start': datetime.datetime(2025, 4, 11, 22, 38, 2, 8000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 39, 28, 730000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: But this is just to give an idea of what you can expect of that. And please just be mindful like with every workshop. I'm definitely going to send you the Powerpoint at the end. So if you want to look over that on your own time, you definitely can.\\n\\niyeshia: And so now that we've got through the onboarding process, this is probably the quickest we've done onboarding process because Kevin did it in 2 weeks. So from there we are going to move to navigating the workplace environment.\\n\\niyeshia: And so with that said, some things that are really important in your workplace environment is building relationships. Whether that's with your peers, your colleagues. Your manager. Trying to have a mentor mentee connection. All relationships are important.\\n\\niyeshia: With that I would say that when it comes to identifying your relationship needs, you want to know what you're expecting like, what? How do you need to show up in your role. What do you need from others? Understanding those type of things can help build better, I would say. Connections with your teammates and things of that nature when it's time to like cover problems or solve projects and things like that.\\n\\niyeshia: Another thing, too, you want to focus on is your Eiq. Emotional intelligence and communication that is basically pretty much helpful on the ability of recognizing your own emotions. Are you adequate enough, or know where your emotions are where you can get things done, what you need, what you don't need? Can you articulate that to your employer when you know those you can be able to identify and handle your emotions.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='17-21', metadata={'start': datetime.datetime(2025, 4, 11, 22, 39, 15, 406000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 40, 50, 170000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Another thing, too, you want to focus on is your Eiq. Emotional intelligence and communication that is basically pretty much helpful on the ability of recognizing your own emotions. Are you adequate enough, or know where your emotions are where you can get things done, what you need, what you don't need? Can you articulate that to your employer when you know those you can be able to identify and handle your emotions.\\n\\niyeshia: And you can add basically help also to learn how to understand and help others. As well.\\n\\niyeshia: Another thing, as far as building relationships goes, is practicing, mindful listening. So the best way to truly listen is to talk less, and of course to understand more. And so when you learn from your teammates, listen as much as you can gain as much knowledge as you can from others, and that's gonna help you kinda conduct, or, you know, be a better team player. In your work environment.\\n\\niyeshia: And then a few things that you can do is\\n\\niyeshia: another way to help build a relationship is manager boundaries, you know, saying what is for you, scheduling time? With colleagues trying not to go over certain tasks or assignments. So that time management is gonna definitely help when you want to focus on your boundaries and you want to set schedules to maybe build connections with your team, and these are ways that you can go about it. Introduce yourself to people, whether your peers, whether it's\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='21-25', metadata={'start': datetime.datetime(2025, 4, 11, 22, 40, 23, 600000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 41, 51, 110000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: another way to help build a relationship is manager boundaries, you know, saying what is for you, scheduling time? With colleagues trying not to go over certain tasks or assignments. So that time management is gonna definitely help when you want to focus on your boundaries and you want to set schedules to maybe build connections with your team, and these are ways that you can go about it. Introduce yourself to people, whether your peers, whether it's\\n\\niyeshia: I don't care if it's a janitor security. The Cfo treat everybody equal and the same. And get to know. Get to know people because you just never know when you're going to need someone or work with someone. During that time.\\n\\niyeshia: And so those are the ways you can go about it. Greet people. You can invite people to coffee breaks, do quick message, check-in, and things of that nature, and then from there the 6 or 7 1, i think, are really important in the workplace environment. Some of the things you want to do is show gratitude, embrace others, give.\\n\\niyeshia: you know, credit where credit is due. Don't try to take anybody's ideas. If it comes to projects and things like that, that is a serious no-no show gratitude, and by any means necessary, try to avoid any gossip, any issues with office politics stay out of it. This is your first.st\\n\\niyeshia: This might be your 1st real like role, as far as like full time. In your career. So you just want to make sure you just keep in the peace and be respectful from there. Gossiping is kind of a big deal and a big no-no as well. So just be mindful of that.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='25-29', metadata={'start': datetime.datetime(2025, 4, 11, 22, 41, 26, 10000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 42, 53, 590000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: This might be your 1st real like role, as far as like full time. In your career. So you just want to make sure you just keep in the peace and be respectful from there. Gossiping is kind of a big deal and a big no-no as well. So just be mindful of that.\\n\\niyeshia: So the next thing, as far as we're talking about building relationship goals, you definitely want to also build those relationships, as I stated, with your peers. And things like that. Your coworkers? But you want to make sure you build a relationship with your manager. And just remember that it's important to have a relationship with your manager. But that's not the only relationship that's like you should focus on, you know. Like, I said before, you want to be a team play. You want to treat everybody equally because you just never know who you connect with.\\n\\niyeshia: But when it comes to that manager time, or asking for I would say, supervisions or meetings with them. You can ask questions. Those are always encouraged. You can ask them about their you know, supervisor style. Are they transformative? Are they hands on?\\n\\niyeshia: Do they like feedback directly towards them? Is everything written email? How are they? What's their work? Style? You can even ask them for the expectations of what is this like in a role like, what are your expectations, as far as how you show up in your role to them? And what are they looking for like with the measurements of success. Of course we always tell fellows to document everything that you do, as far as like when it comes to any goals that you bring any success.\\n\\niyeshia: rate, that you have many tasks that you might have brought to the table any of your accomplishments I know some people carry, or they write down like a accomplishment form of all the things that they've done, which, while they were at work to help with the ideas of what they bring to the table when it's time to come up for that, raise negotiation process. So just make sure you also update your resume as we go along, too.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='29-33', metadata={'start': datetime.datetime(2025, 4, 11, 22, 42, 39, 830000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 44, 31, 219000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: rate, that you have many tasks that you might have brought to the table any of your accomplishments I know some people carry, or they write down like a accomplishment form of all the things that they've done, which, while they were at work to help with the ideas of what they bring to the table when it's time to come up for that, raise negotiation process. So just make sure you also update your resume as we go along, too.\\n\\niyeshia: and then to talk with your manager about not only your successes and what you accomplish, but maybe areas of where you can grow and what you've been struggling to focus on so they can help support you with that as well.\\n\\niyeshia: Be observant in meetings when you're meeting with your team and other people. So that way you could learn about what else is going on, or whatever what everybody else is doing. So you can see how things work together. If you want to connect and socialize, you can ask people to lunch or coffee chats and things like that, and then always just remain proactive. You know it's always a good gesture to ask for teammate. It's like, Hey, is there anything you need before you know the end of the day? Or before I'm about to leave. You know things like that. It's always\\n\\niyeshia: helpful, too, because you never know when it's like your time, and someone is asking or offering help to you. And you're like, Oh, yeah, definitely need help with this. So it's always great to return their favor.\\n\\niyeshia: And so\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='33-37', metadata={'start': datetime.datetime(2025, 4, 11, 22, 44, 6, 850000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 45, 24, 330000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: And so\\n\\niyeshia: from there I would say, overall in regards of meeting with your supervisor, depending on how they do it. It could be quarterly it could be every other month. It could be 3 times throughout the year. They have a performance review. And so some companies like to start with, maybe January, you start, or maybe June, you started\\n\\niyeshia: working with them, and you track goals and what you could accomplish. With your manager until, like the next meeting, you have to go over just to make sure that you're on track with your goals throughout the throughout the year, as you've been working with your with your company.\\n\\niyeshia: That you got hired by, and so sometimes they'll do like a mid year review report to see your progress. If there's any touch points they could assist you with or support you with. You can meet with them with one on one meetings. If you feel like that's too long, and you want to make suggestions to meet with them sooner. Maybe you want to do every 3 months\\n\\niyeshia: just to see what's going on and how you can stay on track, and so I would say. Performance reviews, I guess, could be nerve wracking if it's like your 1st time, because you don't know what to expect.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='37-41', metadata={'start': datetime.datetime(2025, 4, 11, 22, 45, 22, 800000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 46, 29, 640000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: just to see what's going on and how you can stay on track, and so I would say. Performance reviews, I guess, could be nerve wracking if it's like your 1st time, because you don't know what to expect.\\n\\niyeshia: but of course you'll get used to it. As it progresses. But then, of course, you're still maintaining those connections with your supervisor, so you can definitely ask them questions of what you can expect from a performance review and things like that.\\n\\niyeshia: I'll pause here. If anybody has any questions about anything that I've mentioned. Anything like that?\\n\\niyeshia: Any questions? Are we all good.\\n\\nCUNY Tech Prep (CTP): Now's your chance before you forget what you wanted to ask.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='41-45', metadata={'start': datetime.datetime(2025, 4, 11, 22, 46, 20, 172000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 46, 57, 250000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text=\"CUNY Tech Prep (CTP): Now's your chance before you forget what you wanted to ask.\\n\\nCUNY Tech Prep (CTP): No takers.\\n\\nCUNY Tech Prep (CTP): I have a few comments.\\n\\niyeshia: You want to go ahead, Kevin.\\n\\nCUNY Tech Prep (CTP): Well, self, I see self document as also having a secondary goal, particularly if you find yourself in\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='45-49', metadata={'start': datetime.datetime(2025, 4, 11, 22, 46, 53, 110000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 47, 15, 910000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'iyeshia', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text=\"CUNY Tech Prep (CTP): Well, self, I see self document as also having a secondary goal, particularly if you find yourself in\\n\\nCUNY Tech Prep (CTP): not such a nice work environment.\\n\\nCUNY Tech Prep (CTP): It helps prevent people from gaslighting. You, for example.\\n\\nCUNY Tech Prep (CTP): And like it keeps you out of trouble. Let's say cause if you self document, then\\n\\nCUNY Tech Prep (CTP): you know exactly what was decided on.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='49-53', metadata={'start': datetime.datetime(2025, 4, 11, 22, 47, 8, 509000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 47, 35, 809000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text=\"CUNY Tech Prep (CTP): you know exactly what was decided on.\\n\\nCUNY Tech Prep (CTP): And you're just following exactly what was said.\\n\\niyeshia: That is correct.\\n\\nCUNY Tech Prep (CTP): And then the setting boundaries right.\\n\\nCUNY Tech Prep (CTP): and there are some. There are some\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='53-57', metadata={'start': datetime.datetime(2025, 4, 11, 22, 47, 32, 970000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 47, 47, 590000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'iyeshia', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text=\"CUNY Tech Prep (CTP): and there are some. There are some\\n\\nCUNY Tech Prep (CTP): bosses who will push your boundaries. Try to get you to like\\n\\nCUNY Tech Prep (CTP): do overtime. Stay longer than like\\n\\nCUNY Tech Prep (CTP): your stay longer than what's on like the contract, or whatever.\\n\\nCUNY Tech Prep (CTP): If you give an inch sometimes they'll take a mile, so\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='57-61', metadata={'start': datetime.datetime(2025, 4, 11, 22, 47, 44, 400000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 48, 4, 960000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text=\"CUNY Tech Prep (CTP): If you give an inch sometimes they'll take a mile, so\\n\\nCUNY Tech Prep (CTP): you should be very clear on\\n\\nCUNY Tech Prep (CTP): your time. Your time limits, like.\\n\\nCUNY Tech Prep (CTP): you know, have always have an out, for\\n\\nCUNY Tech Prep (CTP): when too much is being requested of you.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='61-65', metadata={'start': datetime.datetime(2025, 4, 11, 22, 48, 0, 275000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 48, 22, 120000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text=\"CUNY Tech Prep (CTP): when too much is being requested of you.\\n\\nCUNY Tech Prep (CTP): My usual go to is like, Oh, I I have like I have a meeting for Ctp, or like I have class.\\n\\niyeshia: Very good. That's good to good to know. And I know. David. Put in the chat like for an example of documentation. On March 16, th at 4, 35, you said, and I quote that is, that is exactly.\\n\\nCUNY Tech Prep (CTP): Under my lap.\\n\\niyeshia: But if you're in that situation, you definitely, it's so fresh, and it's so like truthful, like someone's like, no, I'm not going to doubt that someone made that.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='65-69', metadata={'start': datetime.datetime(2025, 4, 11, 22, 48, 19, 400000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 48, 58, 550000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'iyeshia', 'CUNY Tech Prep (CTP)', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: But if you're in that situation, you definitely, it's so fresh, and it's so like truthful, like someone's like, no, I'm not going to doubt that someone made that.\\n\\nCUNY Tech Prep (CTP): Yeah.\\n\\niyeshia: We wrote that and gave them the time so absolutely documentation goals for the good and for the bad. So definitely. Thank you for sharing that Kevin and David?\\n\\niyeshia: And so with that said, We'll go on to the the next slide. Which is a question of is my manager the same as having a mentor. Does anybody want to come off the come off mute and say yes or no?\\n\\niyeshia: I can just call on Kyle.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='69-73', metadata={'start': datetime.datetime(2025, 4, 11, 22, 48, 50, 400000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 49, 26, 790000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'CUNY Tech Prep (CTP)', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: I can just call on Kyle.\\n\\nCUNY Tech Prep (CTP): Kyle, you there.\\n\\nKyle Schoenhardt: No, it's not.\\n\\niyeshia: Okay, let's see.\\n\\niyeshia: Yay, good job, PAL. The answer is, no.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='73-77', metadata={'start': datetime.datetime(2025, 4, 11, 22, 49, 23, 820000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 49, 39, 930000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'CUNY Tech Prep (CTP)', 'Kyle Schoenhardt', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Yay, good job, PAL. The answer is, no.\\n\\niyeshia: Did you want to give more input?\\n\\nKyle Schoenhardt: Yeah. Sure.\\n\\niyeshia: Yeah.\\n\\nKyle Schoenhardt: Well, I mean, sometimes you can just have really bad managers who are there to cover their own self, make themselves look good sometimes at your expense, or they micromanage, or you just don't click well with that person. For whatever reason a mentor is akin to a leader, I think they are there to lift you up and show you\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='77-81', metadata={'start': datetime.datetime(2025, 4, 11, 22, 49, 36, 340000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 50, 4, 440000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'Kyle Schoenhardt', 'iyeshia', 'Kyle Schoenhardt')}),\n",
- " Chunk(text=\"Kyle Schoenhardt: Well, I mean, sometimes you can just have really bad managers who are there to cover their own self, make themselves look good sometimes at your expense, or they micromanage, or you just don't click well with that person. For whatever reason a mentor is akin to a leader, I think they are there to lift you up and show you\\n\\nKyle Schoenhardt: how you can improve on yourself like a coach.\\n\\nKyle Schoenhardt: Constantly giving you feedback, whether positive or negative.\\n\\nKyle Schoenhardt: I would say someone you would\\n\\nKyle Schoenhardt: go to immediately like. If the 1st person you think of that you need help with something is not your manager, then that's\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='81-85', metadata={'start': datetime.datetime(2025, 4, 11, 22, 49, 45, 340000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 50, 20, 510000, tzinfo=datetime.timezone.utc), 'speakers': ('Kyle Schoenhardt', 'Kyle Schoenhardt', 'Kyle Schoenhardt', 'Kyle Schoenhardt', 'Kyle Schoenhardt')}),\n",
- " Chunk(text=\"Kyle Schoenhardt: go to immediately like. If the 1st person you think of that you need help with something is not your manager, then that's\\n\\nKyle Schoenhardt: a good indicator, that that person is not a mentor, or, if you need help with something, your your 1st go to person to that you think of is\\n\\nKyle Schoenhardt: someone else that is probably who your mentor is most likely to be, could be a coworker. It could be a manager, but it's not always.\\n\\niyeshia: Got it. Thank you, Kevin. I mean. Thank you, Kyle, said Kevin. Thank you. Kyle. Appreciate that. With that, said, I don't feel like I need to add any more. I feel like Kyle took that. So I'm gonna move on to the day.\\n\\niyeshia: So the next question is, should my manager, be my mentor.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='85-89', metadata={'start': datetime.datetime(2025, 4, 11, 22, 50, 14, 360000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 50, 54, 30000, tzinfo=datetime.timezone.utc), 'speakers': ('Kyle Schoenhardt', 'Kyle Schoenhardt', 'Kyle Schoenhardt', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: So the next question is, should my manager, be my mentor.\\n\\niyeshia: Alison.\\n\\nAllison Lee: Well, you you can't force a mentor mentee relationship if that's not how it's going to work.\\n\\nAllison Lee: But it is possible for your manager to be some kind of mentor figure.\\n\\niyeshia: Thank you.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='89-93', metadata={'start': datetime.datetime(2025, 4, 11, 22, 50, 49, 565000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 51, 20, 810000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'Allison Lee', 'Allison Lee', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Thank you.\\n\\niyeshia: So with that, said.\\n\\niyeshia: that depends. So I appreciate Allison. Your response. It definitely depends. Can't force them. But of course, if you do get along with your supervisor, and you want to ask them that\\n\\niyeshia: by all means. But good, answers everyone.\\n\\niyeshia: So now we go more in depth of what can good mentorship look like? And so from there I would say, mentors, as\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='93-97', metadata={'start': datetime.datetime(2025, 4, 11, 22, 51, 19, 920000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 51, 50, 362000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: So now we go more in depth of what can good mentorship look like? And so from there I would say, mentors, as\\n\\niyeshia: Kyle touched on was that they provide support, wisdom to help you succeed in certain examples are, this is pretty much sharing any ideas you might have with them from paying program with you on a code base providing feedback, maybe on a slide deck to helping you remind that it's impossible to know everything. So they're kind of reassuring you in your in your role as you're starting your career.\\n\\niyeshia: and then you want to make sure your mentor is a is a safe space for you at the time. Sometimes your mentor. You can talk to your mentor about your manager sometimes if they are difficult or not, and so from there it's a form of trust\\n\\niyeshia: with your with your mentor. So if you have, if you are blessed to have a supervisor who can be both roles, a manager and a mentor. Go for it, if you're like. I'm still learning. I'm only 3, 30 days in 60 days, 90 days. Take your time, then. So that is definitely something to to know from that.\\n\\niyeshia: And then questions of Where can I find? A mentor? And so, before I even answer this question, who can tell me what erg stands for\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='97-101', metadata={'start': datetime.datetime(2025, 4, 11, 22, 51, 39, 630000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 53, 1, 430000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: And then questions of Where can I find? A mentor? And so, before I even answer this question, who can tell me what erg stands for\\n\\niyeshia: anyone?\\n\\niyeshia: Go ahead, Devon, please.\\n\\nDevin Xie (no cam): Employee resource groups.\\n\\niyeshia: Thank you so much, Devin. I appreciate you and blouse right there. Next to erg. So the examples of that can be any groups that they have at your job related to Lgbtq. It could be groups related to race and identity. It could be anything from parenthood. I wish they had groups related for auntiehood and things of that nature. But it's all about finding your community and resources for things to help support you while you're working\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='101-105', metadata={'start': datetime.datetime(2025, 4, 11, 22, 52, 50, 839000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 53, 40, 780000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'Devin Xie (no cam)', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Thank you so much, Devin. I appreciate you and blouse right there. Next to erg. So the examples of that can be any groups that they have at your job related to Lgbtq. It could be groups related to race and identity. It could be anything from parenthood. I wish they had groups related for auntiehood and things of that nature. But it's all about finding your community and resources for things to help support you while you're working\\n\\niyeshia: in some of your environments. And then, when you have your community, you can always reflect on interests related to tech.\\n\\niyeshia: or maybe research on your company like, who's in your area. And you could always reach out to some people for informational interviews. If you're really trying to seek this mentor Mentee relationship from people who are at your company. So just to keep that in mind.\\n\\niyeshia: I think I saw something.\\n\\niyeshia: Auntie Hood. Yes, and then I think, Mingle, said Manager supervisors are not your friend. Their one and only job is to find a person that can get the job done. Okay, come on, now, very good. And so\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='105-109', metadata={'start': datetime.datetime(2025, 4, 11, 22, 53, 12, 780000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 54, 26, 240000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Auntie Hood. Yes, and then I think, Mingle, said Manager supervisors are not your friend. Their one and only job is to find a person that can get the job done. Okay, come on, now, very good. And so\\n\\niyeshia: with that, said, I think y'all know the roles between manager and mentor, and I appreciate that.\\n\\niyeshia: So now the next part is negotiating raises. So the last workshop we did was negotiating offers, as I stated before. So this one's gonna be a little different. You got the job. So now, after that whole success in your 1st year you want to start discussing maybe time for a raise. So let's get into that.\\n\\niyeshia: So you did a great job.\\n\\niyeshia: 1st year you knocked it out. You got outcomes, you got successes. You're amazing. On the 1st year what happens now?\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='109-113', metadata={'start': datetime.datetime(2025, 4, 11, 22, 54, 9, 170000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 55, 2, 119000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: 1st year you knocked it out. You got outcomes, you got successes. You're amazing. On the 1st year what happens now?\\n\\niyeshia: Your success is going to be measured by achievements, contributions into your organization, and that could be rewarded with\\n\\niyeshia: money or something else you value that could be related to time. Things of that nature. You want to go up based off your benefits. As we stated before, in the last workshop, you might wanna negotiate that. But if you want to talk about money first.st That's okay, too.\\n\\niyeshia: And these are gonna help you, too, as well with your I would say. Manager or supervisor. Meetings\\n\\niyeshia: from there.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='113-117', metadata={'start': datetime.datetime(2025, 4, 11, 22, 54, 55, 790000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 55, 34, 450000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: from there.\\n\\niyeshia: So just remember that it's okay when you when you flex those negotiating offers or flex those muscles during conversations around raises. It's not bragging. If you're talking about your achievements and things like that. It's okay to to talk about your successes, you know, especially during a raise time, because you're trying to show your manager or prove what you brought to the to the table. So keep that in mind.\\n\\niyeshia: So how does it look.\\n\\nCUNY Tech Prep (CTP): Comments, sorry.\\n\\niyeshia: Yeah, that is.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='117-121', metadata={'start': datetime.datetime(2025, 4, 11, 22, 55, 33, 703000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 56, 3, 390000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'CUNY Tech Prep (CTP)', 'iyeshia')}),\n",
- " Chunk(text='iyeshia: Yeah, that is.\\n\\nCUNY Tech Prep (CTP): Something you would also document. If your manager praises you, you document that.\\n\\niyeshia: That.\\n\\nCUNY Tech Prep (CTP): Is evidence you can use in your negotiations.\\n\\niyeshia: That is such a fact.', parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='121-125', metadata={'start': datetime.datetime(2025, 4, 11, 22, 56, 2, 350000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 56, 15, 380000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'CUNY Tech Prep (CTP)', 'iyeshia', 'CUNY Tech Prep (CTP)', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: That is such a fact.\\n\\niyeshia: I literally just copy to paste everything, my manager said. Yep, one of my negotiation days. Yep, so thank you, Kevin, for saying that? So with that said, if you have those those meetings with them, document not only what you say, but what they said, as Kevin mentioned.\\n\\niyeshia: That was great in the negotiating offer. So how else do we prepare for this?\\n\\niyeshia: You're going to research? Yes, you're going to gather all your feedback, whether it's from your colleagues and meetings, whether it's from the success that you hear from your manager or tips from people that you work with, you're going to make sure you learn about your role. What's going on in the market. Just research is going to be your best.\\n\\niyeshia: Put input on this as well. When you're talking about your salary. The next thing you want to do is list the accomplishments. Keep those documents. Don't wait to the last minute you get to the end of the year. You're like, what did I do? It's been 12 months, like.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='125-129', metadata={'start': datetime.datetime(2025, 4, 11, 22, 56, 13, 990000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 57, 11, 189000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Put input on this as well. When you're talking about your salary. The next thing you want to do is list the accomplishments. Keep those documents. Don't wait to the last minute you get to the end of the year. You're like, what did I do? It's been 12 months, like.\\n\\niyeshia: yeah, document everything, because you might forget some stuff. So that's definitely gonna help, too.\\n\\niyeshia: With that, said, you want to make sure you remind everyone. Maybe you save a bunch of money for the company. Oh, maybe you help them with other accomplishments, or maybe you spend off a project that's done really well. For your department. Share it. So please feel free to do that.\\n\\niyeshia: and then that will also help you keep your resume updated as well. So you don't have to worry about trying to\\n\\niyeshia: scatter or get all your thoughts together at the last minute.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='129-133', metadata={'start': datetime.datetime(2025, 4, 11, 22, 56, 56, 940000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 57, 46, 399000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: scatter or get all your thoughts together at the last minute.\\n\\niyeshia: And then with that status also, your manager needs to have the facts, too, to convince their boss to approve you for a raise. So if your manager is giving you the praises already, they're like, yeah, I did say that like\\n\\niyeshia: as well. Even if they make a joke like saying to you like, Hey, you deserve a raise document that you could go right back to like, you know. April 11th at 5, at 6 58 pm. You said, I deserve a raise this time like it. Just everything will just work for you in your favor for that, so please feel free to do that.\\n\\niyeshia: And so now you did the you did the raise. You had the meeting with your your manager. They're proposing it to the Supervisor, or things of that nature. I know different companies work in different ways, so they might have you go directly to your boss's boss to talk about the raise, or whoever is in charge of that\\n\\niyeshia: common, to negotiate that with them. But every company is different. But if they say yes, that's great job all done. Now, what if you get to a conversation where they say, No, what do you do, then? Well, there are alternatives for that. You can ask to work on, maybe towards a promotion. You know what I'm saying as far as if they say based off your level. We can't go any higher than that\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='133-137', metadata={'start': datetime.datetime(2025, 4, 11, 22, 57, 43, 370000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 22, 59, 5, 720000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: common, to negotiate that with them. But every company is different. But if they say yes, that's great job all done. Now, what if you get to a conversation where they say, No, what do you do, then? Well, there are alternatives for that. You can ask to work on, maybe towards a promotion. You know what I'm saying as far as if they say based off your level. We can't go any higher than that\\n\\niyeshia: negotiate for promotion which would include maybe getting a title change, or better money that comes with it. This is why we say research, because you can definitely research what's going on in the market saying, Hey, that's my job. But the title is different.\\n\\niyeshia: Look that up and like definitely propose that if you want to. You can even ask for a faster review cycle. If they say something like, Hey, we can't give that to you. Just yet today. But let's revisit this topic on the 6 months, maybe, like, hey? Can we meet sooner, maybe in 3 months, to discuss more about how I can go about this\\n\\niyeshia: and then you could simply, if they say no. Ask why? Because you don't want to hear anything as far as like knowing that period. No, they should give you an explanation for it. So always ask questions with that to help like what's driving? That? Was it bad timing? Is there a gap? Is there their cap? Is there certain budgets. Did I miss anything that could help? So they can definitely\\n\\niyeshia: share with you and tell you that information of why they might have done. It could be a whole timing thing. It could be a budget thing. But just keep in mind to keep so just to keep in mind you could ask for like. Go around it 3 these ways, let's say 3 different ways. You can go about the answer and no from there. With that, said, does anyone have any questions so far?\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='137-141', metadata={'start': datetime.datetime(2025, 4, 11, 22, 58, 41, 520000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 0, 22, 429000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: share with you and tell you that information of why they might have done. It could be a whole timing thing. It could be a budget thing. But just keep in mind to keep so just to keep in mind you could ask for like. Go around it 3 these ways, let's say 3 different ways. You can go about the answer and no from there. With that, said, does anyone have any questions so far?\\n\\niyeshia: Nobody. Okay. Devin.\\n\\nCUNY Tech Prep (CTP): Devin does Devon.\\n\\nDevin Xie (no cam): Just curious. So like, say, we\\n\\nDevin Xie (no cam): find some opportunity after we graduate from Cuny Tech fair.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='141-145', metadata={'start': datetime.datetime(2025, 4, 11, 23, 0, 2, 260000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 0, 38, 140000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'CUNY Tech Prep (CTP)', 'Devin Xie (no cam)', 'Devin Xie (no cam)')}),\n",
- " Chunk(text=\"Devin Xie (no cam): find some opportunity after we graduate from Cuny Tech fair.\\n\\nDevin Xie (no cam): And then we have questions about this stuff like.\\n\\nDevin Xie (no cam): let's say we work there for like a year. And we\\n\\nDevin Xie (no cam): we stop. We we want to ask for some advice. Can we still hit you guys up.\\n\\niyeshia: Yeah, but you become alumni. You're not just gonna drop you all off in May and be like, bye. No, you can definitely you'll be invited. May like, after the graduation, I want to say in the summertime you'll get an invite to the alumni slack channel and you can join\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='145-149', metadata={'start': datetime.datetime(2025, 4, 11, 23, 0, 34, 630000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 1, 6, 469000, tzinfo=datetime.timezone.utc), 'speakers': ('Devin Xie (no cam)', 'Devin Xie (no cam)', 'Devin Xie (no cam)', 'Devin Xie (no cam)', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Yeah, but you become alumni. You're not just gonna drop you all off in May and be like, bye. No, you can definitely you'll be invited. May like, after the graduation, I want to say in the summertime you'll get an invite to the alumni slack channel and you can join\\n\\niyeshia: that, and I will be gladly to assist you. There. We have a career coach there, but usually all the the staff is on the Ctv team is on the alumni channel. So yeah, definitely. But we also like, I said before, Devin, save the Powerpoint, too.\\n\\niyeshia: Just putting that out there? So yeah, good question.\\n\\niyeshia: Okay?\\n\\niyeshia: And so the next part is after the conversation for the the raise. You want to make sure. The conversation goes well, timing is going to be a part of that. So clarifying the process, asking them like, you know, when should I expect the raise? You know that's not being thirsty. That's that's your money. You can ask questions about it. And what's the next step for that?\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='149-153', metadata={'start': datetime.datetime(2025, 4, 11, 23, 0, 48, 30000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 1, 52, 890000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: And so the next part is after the conversation for the the raise. You want to make sure. The conversation goes well, timing is going to be a part of that. So clarifying the process, asking them like, you know, when should I expect the raise? You know that's not being thirsty. That's that's your money. You can ask questions about it. And what's the next step for that?\\n\\niyeshia: You can always confirm with your manager? Like. If the reason they said no, was it because there's certain maybe I would say physical years of like, how they what deadline they have for the New Year or the new budget. Time or deadline, was it? Did I miss it when I asked for a salary? Or when's the next time I should ask for a salary. Increase, and things like that. Cause your your department, or you would hope the team that you're on will show you throughout the year of like what's coming up and what you can expect.\\n\\niyeshia: So you definitely want to plan ahead next time. If they say no, and then review the work and the feedback asking for feedback. Was it my, the way that I would propose the raise? Is there anything I could do to get? You know better on that? That would help with the mentor, of course.\\n\\niyeshia: Cause the person you're proposing it to might not give the input. But definitely, a mentor is gonna help you with that as well to see what's going on. You could definitely check in with your manager. If they had any feedback they might tell your manager to like, let them know like this is why they might have said No or this? Why, they might have said, Not yet, or they'll say yes later. So keep that in mind.\\n\\niyeshia: and then let's see right\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='153-157', metadata={'start': datetime.datetime(2025, 4, 11, 23, 1, 28, 290000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 3, 3, 679000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: and then let's see right\\n\\niyeshia: from there we'll go to the activity.\\n\\niyeshia: And so from there, this is an activity of asking for feedback.\\n\\niyeshia: And we're gonna do a scenario of you want to ask for feedback from your manager.\\n\\niyeshia: and you previously had passed up for raise and want to learn more about how you can ensure success earning one in the next review cycle.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='157-161', metadata={'start': datetime.datetime(2025, 4, 11, 23, 2, 56, 970000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 3, 28, 539000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: and you previously had passed up for raise and want to learn more about how you can ensure success earning one in the next review cycle.\\n\\niyeshia: So this part is, how would you start that conversation in your weekly check in?\\n\\niyeshia: So since we're virtual, we're gonna have, I'm gonna give you about 30 seconds to come up with your own answer, and then type it in the chat.\\n\\niyeshia: So review the scenario now and then we'll start in 30 seconds.\\n\\niyeshia: So\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='161-165', metadata={'start': datetime.datetime(2025, 4, 11, 23, 3, 20, 550000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 3, 47, 620000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text='iyeshia: So\\n\\niyeshia: we set the timer for 30.\\n\\niyeshia: Okay?\\n\\niyeshia: Goes now\\n\\niyeshia: 10 seconds.', parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='165-169', metadata={'start': datetime.datetime(2025, 4, 11, 23, 3, 46, 890000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 4, 22, 70000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text='iyeshia: 10 seconds.\\n\\niyeshia: Okay, time is up.\\n\\niyeshia: Okay, nice.\\n\\niyeshia: And look for a raise on to guarantee a raise in this performance. Review. Awesome. Thank you. Ty\\n\\niyeshia: and Mckenzie. Thank you.', parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='169-173', metadata={'start': datetime.datetime(2025, 4, 11, 23, 4, 20, 970000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 5, 2, 160000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text='iyeshia: and Mckenzie. Thank you.\\n\\niyeshia: 13.\\n\\niyeshia: Some feedback to see what I can build. Awesome.\\n\\niyeshia: Hey, boys!\\n\\niyeshia: Oh, my God this time to reach out a bit. Okay, okay for me.', parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='173-177', metadata={'start': datetime.datetime(2025, 4, 11, 23, 5, 0, 20000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 5, 20, 509000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text='iyeshia: Oh, my God this time to reach out a bit. Okay, okay for me.\\n\\niyeshia: No.\\n\\niyeshia: Okay.\\n\\niyeshia: Any improvement that you see that I cannot. Okay, thank you.\\n\\niyeshia: Let me check in with you.', parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='177-181', metadata={'start': datetime.datetime(2025, 4, 11, 23, 5, 15, 400000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 5, 45, 859000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Let me check in with you.\\n\\niyeshia: There we go.\\n\\niyeshia: Okay, perfect.\\n\\niyeshia: So what I can make for the next recycle. Awesome. Thank you all for sharing so far, I'm gonna move on to the the next part. I think I kind of skipped\\n\\niyeshia: ahead.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='181-185', metadata={'start': datetime.datetime(2025, 4, 11, 23, 5, 42, 139000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 6, 5, 670000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: ahead.\\n\\niyeshia: Okay.\\n\\niyeshia: so right now, we have a role play example between a manager and you. Let's say you would.\\n\\niyeshia: it could be data science. Related. Right? So from here, I'm going to\\n\\niyeshia: probably volunteer, because I'm not sure if people will volunteer to be the manager and someone be you\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='185-189', metadata={'start': datetime.datetime(2025, 4, 11, 23, 6, 4, 480000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 6, 32, 657000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: probably volunteer, because I'm not sure if people will volunteer to be the manager and someone be you\\n\\niyeshia: So let me see who I can get.\\n\\niyeshia: Okay, I'll go with David for manager, and I'll go for\\n\\niyeshia: Let's try, Kevin for you.\\n\\niyeshia: If you have to read this role, play example.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='189-193', metadata={'start': datetime.datetime(2025, 4, 11, 23, 6, 25, 520000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 6, 52, 689000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text='iyeshia: If you have to read this role, play example.\\n\\nDavid Rodriguez: Should I start now?\\n\\nCUNY Tech Prep (CTP): Kevin, you there?\\n\\nCUNY Tech Prep (CTP): Kevin? Chen.\\n\\nKevin Zheng: Right, right.', parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='193-197', metadata={'start': datetime.datetime(2025, 4, 11, 23, 6, 49, 660000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 7, 7, 270000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'David Rodriguez', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'Kevin Zheng')}),\n",
- " Chunk(text=\"Kevin Zheng: Right, right.\\n\\nCUNY Tech Prep (CTP): Alright!\\n\\nDavid Rodriguez: Great I'll start.\\n\\nDavid Rodriguez: Is there anything else you'd like to talk about?\\n\\nKevin Zheng: Yes, as you know, I've been taking on additional responsibilities since we used the team, and I'd like to speak to you about my conversation package.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='197-201', metadata={'start': datetime.datetime(2025, 4, 11, 23, 7, 6, 450000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 7, 25, 499000, tzinfo=datetime.timezone.utc), 'speakers': ('Kevin Zheng', 'CUNY Tech Prep (CTP)', 'David Rodriguez', 'David Rodriguez', 'Kevin Zheng')}),\n",
- " Chunk(text=\"Kevin Zheng: Yes, as you know, I've been taking on additional responsibilities since we used the team, and I'd like to speak to you about my conversation package.\\n\\nDavid Rodriguez: We really appreciate your hard work.\\n\\nDavid Rodriguez: but it's still a tough economy, and we're not really in a position to give you anything more than a 2% raise. We can talk about a raise at your next review in about 6 months.\\n\\nKevin Zheng: I do understand that the economy has made things difficult. Can we set a time to discuss my compensation again before my next schedule Review.\\n\\nKevin Zheng: I appreciate an opportunity to talk in more detail on the additional work I've taken on, and its impact.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='201-205', metadata={'start': datetime.datetime(2025, 4, 11, 23, 7, 16, 690000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 7, 53, 959000, tzinfo=datetime.timezone.utc), 'speakers': ('Kevin Zheng', 'David Rodriguez', 'David Rodriguez', 'Kevin Zheng', 'Kevin Zheng')}),\n",
- " Chunk(text=\"Kevin Zheng: I appreciate an opportunity to talk in more detail on the additional work I've taken on, and its impact.\\n\\nDavid Rodriguez: Sure that makes sense.\\n\\nDavid Rodriguez: I want to make sure you heard how about a month.\\n\\nKevin Zheng: Great. Thank you. I'll find some time on your calendar for us to meet.\\n\\niyeshia: Thank you. So with that, said, I. Just want to open up the the floor. To everyone. What did you notice?\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='205-209', metadata={'start': datetime.datetime(2025, 4, 11, 23, 7, 48, 720000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 8, 22, 303000, tzinfo=datetime.timezone.utc), 'speakers': ('Kevin Zheng', 'David Rodriguez', 'David Rodriguez', 'Kevin Zheng', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Thank you. So with that, said, I. Just want to open up the the floor. To everyone. What did you notice?\\n\\niyeshia: that during the the role play. That the let's say the data scientists who was played by Kevin,\\n\\niyeshia: did as far as like, maybe something different from your responses that you put in the chat. Did y'all notice anything differently?\\n\\niyeshia: Hey, Devin?\\n\\nDevin Xie (no cam): I don't know if I'm correct. But I think\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='209-213', metadata={'start': datetime.datetime(2025, 4, 11, 23, 8, 12, 300000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 9, 0, 496000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'Devin Xie (no cam)')}),\n",
- " Chunk(text=\"Devin Xie (no cam): I don't know if I'm correct. But I think\\n\\nDevin Xie (no cam): the data scientists or us in this situation, we try to like Scheduler, a review like\\n\\nDevin Xie (no cam): in a later time.\\n\\niyeshia: absolutely. Thank you. He took initiative and be like, you know, hey, let me, let me get on your calendar for next time, instead of just like waiting around, you know, people be like, Oh, I'll get back to you and things like that. He's like, no, we can. We can discuss later, like, what's your schedule like? So that\\n\\niyeshia: that forwardness of just, you know, following up and seeing it through is definitely helpful.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='213-217', metadata={'start': datetime.datetime(2025, 4, 11, 23, 8, 57, 950000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 9, 36, 590000, tzinfo=datetime.timezone.utc), 'speakers': ('Devin Xie (no cam)', 'Devin Xie (no cam)', 'Devin Xie (no cam)', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: that forwardness of just, you know, following up and seeing it through is definitely helpful.\\n\\niyeshia: So and so, for now I would say this would take about maybe\\n\\niyeshia: so final reflection. We could talk about this for like maybe 3\\xa0min, or anybody could just like popcorn it out unless I just call on them. But for today's learning from the workshop what are some things you can generally expect when you 1st join a company? What is a manager's role in your success? And how do you find out your measures of success? Does anyone want to\\n\\niyeshia: volunteer and answer any of the any of the 3 questions that are of their choice\\n\\niyeshia: before I call on someone.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='217-221', metadata={'start': datetime.datetime(2025, 4, 11, 23, 9, 30, 850000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 10, 22, 550000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: before I call on someone.\\n\\niyeshia: Okay, anybody but Devin.\\n\\niyeshia: See, I'm gonna go with anthony.\\n\\nAnthony Jerez: Yes, I'm here.\\n\\niyeshia: Which question would you like to answer? You had to reflect.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='221-225', metadata={'start': datetime.datetime(2025, 4, 11, 23, 10, 21, 20000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 10, 57, 210000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'Anthony Jerez', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Which question would you like to answer? You had to reflect.\\n\\nAnthony Jerez: On, I would say the 1st one.\\n\\niyeshia: Okay, go for it.\\n\\nAnthony Jerez: So some major things that I would expect would be we're going through like sessions like orientation, and like onboarding\\n\\nAnthony Jerez: also knowledge about like some some resources resources that we would have access to at any point.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='225-229', metadata={'start': datetime.datetime(2025, 4, 11, 23, 10, 54, 390000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 11, 22, 390000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'Anthony Jerez', 'iyeshia', 'Anthony Jerez', 'Anthony Jerez')}),\n",
- " Chunk(text=\"Anthony Jerez: also knowledge about like some some resources resources that we would have access to at any point.\\n\\nAnthony Jerez: And yeah, stuff like that. I would say.\\n\\niyeshia: Thank you, Anthony, for sharing.\\n\\niyeshia: and then let me see, trying to see who's not making eye contact. Oh, oh, not everybody looks okay. So let's go with\\n\\niyeshia: Ibrahim.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='229-233', metadata={'start': datetime.datetime(2025, 4, 11, 23, 11, 14, 43000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 11, 42, 810000, tzinfo=datetime.timezone.utc), 'speakers': ('Anthony Jerez', 'Anthony Jerez', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Ibrahim.\\n\\nIbrahim Faruquee: Yeah, I'll answer question, too.\\n\\nIbrahim Faruquee: So your manager's role is mainly like for the company to manage like people and make sure that the right persons for the right job, but they can be like a mentor figure for you. So like, if there can be like good mentors who like help you throughout the process and help you with a raise, or they could also like, be difficult and make that like harder for you. But they're kind of. It's not like there's nothing to be, I guess, expected from a manager. It's just like\\n\\nIbrahim Faruquee: what they like. What do you, I guess. What do you end up with.\\n\\nIbrahim Faruquee: or what do you make the most of.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='233-237', metadata={'start': datetime.datetime(2025, 4, 11, 23, 11, 41, 780000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 12, 23, 880000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'Ibrahim Faruquee', 'Ibrahim Faruquee', 'Ibrahim Faruquee', 'Ibrahim Faruquee')}),\n",
- " Chunk(text=\"Ibrahim Faruquee: or what do you make the most of.\\n\\niyeshia: Awesome. Thank you.\\n\\niyeshia: And then for the 3rd question.\\n\\niyeshia: and we're gonna go for Isabel.\\n\\nIsabel Loçi: Hello!\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='237-241', metadata={'start': datetime.datetime(2025, 4, 11, 23, 12, 22, 390000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 12, 38, 750000, tzinfo=datetime.timezone.utc), 'speakers': ('Ibrahim Faruquee', 'iyeshia', 'iyeshia', 'iyeshia', 'Isabel Loçi')}),\n",
- " Chunk(text=\"Isabel Loçi: Hello!\\n\\niyeshia: Hello!\\n\\nIsabel Loçi: Sorry. My Internet's horrible, and might I might disconnect?\\n\\nIsabel Loçi: I'll see if I can answer the 3rd one. How do you find your measures of success.\\n\\nIsabel Loçi: I would say, ask for feedback from other people elsewhere, from other colleagues, from your manager.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='241-245', metadata={'start': datetime.datetime(2025, 4, 11, 23, 12, 37, 900000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 13, 0, 189000, tzinfo=datetime.timezone.utc), 'speakers': ('Isabel Loçi', 'iyeshia', 'Isabel Loçi', 'Isabel Loçi', 'Isabel Loçi')}),\n",
- " Chunk(text=\"Isabel Loçi: I would say, ask for feedback from other people elsewhere, from other colleagues, from your manager.\\n\\nIsabel Loçi: That way you get a better understanding of where you are right now. And also I would say to also look back on the goals that you've set for yourself, and see if you've reached those goals as well, and that would be a good measure of success.\\n\\niyeshia: Okay, very good. All right.\\n\\niyeshia: So yeah, definitely helped make my life easier with this presentation. So thank you. I'm glad things are sticking and so with that said, We will go and launch Kahoo. But before I do that I definitely want to say just be mindful of these things.\\n\\niyeshia: When you are starting in your 1st year, in your career. As it was stated in one of the slides, you don't have to have it all figured out is the perfect time to ask questions. You're gonna make mistakes, or you're not. But if you do, it's okay. Because it's all gonna be a learning process. For your 1st year, and your managers expect that.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='245-249', metadata={'start': datetime.datetime(2025, 4, 11, 23, 12, 53, 660000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 14, 1, 319000, tzinfo=datetime.timezone.utc), 'speakers': ('Isabel Loçi', 'Isabel Loçi', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: When you are starting in your 1st year, in your career. As it was stated in one of the slides, you don't have to have it all figured out is the perfect time to ask questions. You're gonna make mistakes, or you're not. But if you do, it's okay. Because it's all gonna be a learning process. For your 1st year, and your managers expect that.\\n\\niyeshia: So just keep that in mind.\\n\\niyeshia: And then, if you are going to seek, you know, support, I think. It was great that it's a bell, stated asking for feedback from your manager, but you could also ask for feedback from your teammates, too. Cause they, if you work with them closely. If you have a team to see, like what your areas of strengths are your areas of growth.\\n\\niyeshia: and things that you're learning. That could be helpful. Towards that process if you're going up for a raise. But sometimes people could see our strengths stronger or clearer, or even faster than we can, and we don't even realize it.\\n\\niyeshia: And then even asking your mentors, too, as well, can be helpful. And then.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='249-253', metadata={'start': datetime.datetime(2025, 4, 11, 23, 13, 37, 771000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 14, 40, 799000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: And then even asking your mentors, too, as well, can be helpful. And then.\\n\\niyeshia: if you are going to negotiate, remember to keep for raise, to keep that documented focus on your skills. Make sure you do your research on the market and definitely, just try to figure out if you can negotiate other things.\\n\\niyeshia: And when it comes to relationships, at work, you wanna make sure to treat everybody equally so I hope that that helps. If you didn't get anything else. I hope that's what helps you with them\\n\\niyeshia: with your 1st year? As you enter into your careers. And so with that said, we'll go into Kahoot.\\n\\niyeshia: and so I'm going to launch it now.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='253-257', metadata={'start': datetime.datetime(2025, 4, 11, 23, 14, 36, 80000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 15, 25, 330000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: and so I'm going to launch it now.\\n\\niyeshia: Let's get it started.\\n\\niyeshia: I don't think my headphones died so\\n\\niyeshia: got 33 people on here, and only 16.\\n\\niyeshia: Okay.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='257-261', metadata={'start': datetime.datetime(2025, 4, 11, 23, 15, 22, 420000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 16, 20, 90000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Okay.\\n\\niyeshia: sound. Good.\\n\\niyeshia: 33.\\n\\niyeshia: Well, I didn't cut myself. That's Kevin. You're playing too.\\n\\niyeshia: Figure out how to be successful on my own.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='261-265', metadata={'start': datetime.datetime(2025, 4, 11, 23, 16, 19, 230000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 18, 5, 965000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Figure out how to be successful on my own.\\n\\niyeshia: Oh, you do not have to figure that out.\\n\\niyeshia: That's why we tell you, have mentors, extra peers and things of that nature.\\n\\niyeshia: Well, yeah, shout out to the 22. It's okay. One. I'll take the 22 others, you know. Wow!\\n\\niyeshia: Your boss. My goodness, okay, is in the lead.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='265-269', metadata={'start': datetime.datetime(2025, 4, 11, 23, 18, 2, 780000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 18, 38, 779000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Your boss. My goodness, okay, is in the lead.\\n\\niyeshia: So let's go ahead\\n\\niyeshia: who should not go to\\n\\niyeshia: thank you definitely. The worst thing you could do is talk to no one. If you need support with something.\\n\\niyeshia: So I hope.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='269-273', metadata={'start': datetime.datetime(2025, 4, 11, 23, 18, 33, 507000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 19, 19, 130000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: So I hope.\\n\\nCUNY Tech Prep (CTP): I am shocked.\\n\\niyeshia: That one should you not go to? So yeah.\\n\\niyeshia: let's see. Okay, Jamie is in the name.\\n\\niyeshia: Okay, let's go.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='273-277', metadata={'start': datetime.datetime(2025, 4, 11, 23, 19, 17, 675000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 19, 36, 959000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'CUNY Tech Prep (CTP)', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Okay, let's go.\\n\\niyeshia: 3rd question, what are not considerations to mention when providing reasons for a salary increase.\\n\\niyeshia: There aren't enough.\\n\\niyeshia: Okay? 18. Yes, the cost of living. That is correct. You should not consider that\\n\\niyeshia: They don't, they don't. They don't care so definitely the other ones. You could do that on your own when you're doing your negotiating your your budget. But don't come out and say, like, Hey, the cost of living in this city? They're like\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='277-281', metadata={'start': datetime.datetime(2025, 4, 11, 23, 19, 35, 140000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 20, 30, 309000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: They don't, they don't. They don't care so definitely the other ones. You could do that on your own when you're doing your negotiating your your budget. But don't come out and say, like, Hey, the cost of living in this city? They're like\\n\\niyeshia: or virtual.\\n\\niyeshia: our office in California, we have no idea. So yeah, just just keep that in mind. So good job to the the cost of living folks.\\n\\niyeshia: Okay, David Rv is in the lead.\\n\\niyeshia: Okay, let's go to the next question.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='281-285', metadata={'start': datetime.datetime(2025, 4, 11, 23, 20, 15, 250000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 20, 50, 419000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Okay, let's go to the next question.\\n\\niyeshia: what is a thoughtful way to actually negotiate?\\n\\niyeshia: So we can negotiate? Very good. It's a thoughtful way to act\\n\\niyeshia: and I think most of y'all got that in the chat. I saw some other answers. I'm gonna leave that questionable. But for the ones who did shout out to y'all.\\n\\niyeshia: So I think this is the last question.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='285-289', metadata={'start': datetime.datetime(2025, 4, 11, 23, 20, 47, 460000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 21, 33, 389000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: So I think this is the last question.\\n\\niyeshia: But Kyle is in the lead now, and so shouts to Kyle. So here goes the last question.\\n\\niyeshia: The most important relationship at work is with my manager.\\n\\niyeshia: Shout out to the people who said, False I said, it is important, but not the most important. Yeah, there's team this\\n\\niyeshia: Ceos, what about yourself? You know, things like that? So I just want to keep that in mind. So\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='289-293', metadata={'start': datetime.datetime(2025, 4, 11, 23, 21, 30, 680000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 22, 10, 579000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Ceos, what about yourself? You know, things like that? So I just want to keep that in mind. So\\n\\niyeshia: yeah, let's always about that. So let's go to the windows.\\n\\niyeshia: Okay, let's okay.\\n\\niyeshia: Number one.\\n\\niyeshia: Okay, at the bottom.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='293-297', metadata={'start': datetime.datetime(2025, 4, 11, 23, 22, 3, 670000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 22, 42, 966000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Okay, at the bottom.\\n\\niyeshia: Okay, with that, said\\n\\niyeshia: the last thing I will do. These are some follow up questions that you can ask your career coach. If I'm your career coach, you could definitely ask me that.\\n\\niyeshia: But how much of a raise. Can you ask for? When do you? Should you start a retirement fund? I would say, Asap, how long should you take to figure out if your company is a good fit, and how do you approach a conflict with a manager or coworker? So if you have any questions about those, please feel free to reach out to me or your career coach, if you would like to discuss further details, and I do want to be mindful of time.\\n\\niyeshia: And so I want to thank you for your time, and just want to let you know. This is the feedback form that really helps me with this presentation\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='297-301', metadata={'start': datetime.datetime(2025, 4, 11, 23, 22, 37, 600000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 23, 34, 310000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: And so I want to thank you for your time, and just want to let you know. This is the feedback form that really helps me with this presentation\\n\\niyeshia: and help me to deliver it better or worse. So if I did a good job, that's great. But I'm going to put this in the chat.\\n\\niyeshia: So you could fill that out now and then. Also want to invite you all to Rsvp. For Ctp's graduation.\\n\\niyeshia: So I would say, you can do that right now as well\\n\\niyeshia: and please register as a student. For those who can attend. You're more than welcome for the I believe the May 20th ones. If you cannot attend because you have a final, you have an internship. It is okay. There's no pressure. We're not going to be like, Hey, you can't you got to make it? No, we totally get it, I mean, we understand. So blessings on your finals\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='301-305', metadata={'start': datetime.datetime(2025, 4, 11, 23, 23, 25, 460000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 24, 14, 640000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: and please register as a student. For those who can attend. You're more than welcome for the I believe the May 20th ones. If you cannot attend because you have a final, you have an internship. It is okay. There's no pressure. We're not going to be like, Hey, you can't you got to make it? No, we totally get it, I mean, we understand. So blessings on your finals\\n\\niyeshia: and your projects. But for those who can't attend come through. It's going to be great to see your projects to see each other one last time, like Demo Night. And it's gonna be it's going to be a great time as we close out the the cohort in in May. So, and also to Devin's question, just one more time. We won't leave you hanging you will get an invite to be alumni\\n\\niyeshia: for Ctp, and that way you'll be with everybody who did the cohorts before your cohorts, one through 9 and so it'll be one through 10 now. And so that'll be like over a thousand people in that slack channel. So you can definitely network with your peers and the people who came before you. So yeah, just keep that in mind.\\n\\niyeshia: So thank you all. And I will stop sharing.\\n\\niyeshia: And yeah, please. Rsvp for the graduation. And please fill out that feedback form. It is greatly appreciative. I want to thank you for your time lessons on your projects. And yeah, if any of my fellows have any questions about the presentation, you can highlight me on slack. I am there to support you, and other than that. I want to thank you. And, Kevin, I think it's all yours now.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='305-309', metadata={'start': datetime.datetime(2025, 4, 11, 23, 23, 56, 130000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 25, 23, 469000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'iyeshia', 'iyeshia', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: And yeah, please. Rsvp for the graduation. And please fill out that feedback form. It is greatly appreciative. I want to thank you for your time lessons on your projects. And yeah, if any of my fellows have any questions about the presentation, you can highlight me on slack. I am there to support you, and other than that. I want to thank you. And, Kevin, I think it's all yours now.\\n\\nCUNY Tech Prep (CTP): Definitely. Thank you, Aisha, for the valuable tips. I think. A lot of students, a lot of the students I've spoken to, at least are.\\n\\nCUNY Tech Prep (CTP): have got recently gotten jobs or are very close to getting them, and\\n\\nCUNY Tech Prep (CTP): they will find this material very useful. I'm actually kind of glad I remember to click record at the beginning, because some of them are like in traffic right now.\\n\\niyeshia: Got it. Okay.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='309-313', metadata={'start': datetime.datetime(2025, 4, 11, 23, 24, 59, 60000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 25, 46, 947000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'iyeshia')}),\n",
- " Chunk(text=\"iyeshia: Got it. Okay.\\n\\niyeshia: I'm glad.\\n\\nCUNY Tech Prep (CTP): Okay, thank you. So I'm gonna give you all 10\\xa0min to fill this out. Since you got 2 things to fill out. One is the inviting yourself to the graduation, and then 2 is the survey.\\n\\nCUNY Tech Prep (CTP): Alright, so we will come back at 7, 35.\\n\\nCUNY Tech Prep (CTP): Oh, yes, there's good news for those of you who missed it.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='313-317', metadata={'start': datetime.datetime(2025, 4, 11, 23, 25, 45, 980000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 26, 38, 720000, tzinfo=datetime.timezone.utc), 'speakers': ('iyeshia', 'iyeshia', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text=\"CUNY Tech Prep (CTP): Oh, yes, there's good news for those of you who missed it.\\n\\nCUNY Tech Prep (CTP): There's no homework for the next 2 weeks, and there's spring break. So which means.\\n\\nCUNY Tech Prep (CTP): after this class, I'll be seeing you the second Friday from now.\\n\\nCUNY Tech Prep (CTP): Not next Friday.\\n\\nCUNY Tech Prep (CTP): No, a break is not exactly a break, so you have projects.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='317-321', metadata={'start': datetime.datetime(2025, 4, 11, 23, 26, 35, 740000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 27, 30, 180000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text='CUNY Tech Prep (CTP): No, a break is not exactly a break, so you have projects.\\n\\nCUNY Tech Prep (CTP): This is time to do your projects.\\n\\nCUNY Tech Prep (CTP): Alright, so just as a gift to all the people who are in class.\\n\\nCUNY Tech Prep (CTP): If you check the homework sheet.\\n\\nCUNY Tech Prep (CTP): there is actually a column where you can grade yourselves. You can give yourself any emoji you want.', parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='321-325', metadata={'start': datetime.datetime(2025, 4, 11, 23, 27, 25, 350000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 30, 10, 10000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text=\"CUNY Tech Prep (CTP): there is actually a column where you can grade yourselves. You can give yourself any emoji you want.\\n\\nCUNY Tech Prep (CTP): I'll let you figure out which one that is\\n\\nCUNY Tech Prep (CTP): alright. We're back.\\n\\nCUNY Tech Prep (CTP): So go for the rest of this day. So we're gonna I'm gonna put you in breakout rooms\\n\\nCUNY Tech Prep (CTP): for your projects.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='325-329', metadata={'start': datetime.datetime(2025, 4, 11, 23, 30, 4, 390000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 35, 26, 359000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text='CUNY Tech Prep (CTP): for your projects.\\n\\nCUNY Tech Prep (CTP): And what I want you to do is I need to think about the state of the project. You, the the state the project is in.\\n\\nCUNY Tech Prep (CTP): I will be coming around to check in\\n\\nCUNY Tech Prep (CTP): because you have 2 weeks and no homework.\\n\\nCUNY Tech Prep (CTP): I want you to put your all into the project. So', parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='329-333', metadata={'start': datetime.datetime(2025, 4, 11, 23, 35, 24, 600000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 35, 48, 269000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text='CUNY Tech Prep (CTP): I want you to put your all into the project. So\\n\\nCUNY Tech Prep (CTP): let me make the breakout rooms first.st\\n\\nCUNY Tech Prep (CTP): Basically, what I want you to do is plan out the next 2 weeks. Okay, what do you want? What? What is missing from\\n\\nCUNY Tech Prep (CTP): your project that you need to complete it?\\n\\nCUNY Tech Prep (CTP): And how are you going to get there in the next 2 weeks?', parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='333-337', metadata={'start': datetime.datetime(2025, 4, 11, 23, 35, 44, 440000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 36, 21, 619000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text=\"CUNY Tech Prep (CTP): And how are you going to get there in the next 2 weeks?\\n\\nCUNY Tech Prep (CTP): Because after the next 2 weeks you literally have only 2 weeks left.\\n\\nCUNY Tech Prep (CTP): There's class. There's week 11, and then there's week 12\\n\\nCUNY Tech Prep (CTP): week. 13 is like May May 10th or May 9, th\\n\\nCUNY Tech Prep (CTP): and then the week after that, I believe, is\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='337-341', metadata={'start': datetime.datetime(2025, 4, 11, 23, 36, 18, 720000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 36, 47, 696000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}),\n",
- " Chunk(text=\"CUNY Tech Prep (CTP): and then the week after that, I believe, is\\n\\nCUNY Tech Prep (CTP): when you're going to do Demos.\\n\\nCUNY Tech Prep (CTP): I could be wrong.\\n\\nCUNY Tech Prep (CTP): Alright. You can pick the rooms. Now go into your rooms.\", parent_id='dc127bd4f4c2ded43cfb3df112010ca6d008859f002ea690a553561ebef90b4a', chunk_id='341-344', metadata={'start': datetime.datetime(2025, 4, 11, 23, 36, 45, 320000, tzinfo=datetime.timezone.utc), 'end': datetime.datetime(2025, 4, 11, 23, 36, 57, 370000, tzinfo=datetime.timezone.utc), 'speakers': ('CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)', 'CUNY Tech Prep (CTP)')}))"
- ]
- },
- "execution_count": 14,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "web_vtt_content.get_chunks()"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": ".venv",
- "language": "python",
- "name": "python3"
- },
- "language_info": {
- "codemirror_mode": {
- "name": "ipython",
- "version": 3
- },
- "file_extension": ".py",
- "mimetype": "text/x-python",
- "name": "python",
- "nbconvert_exporter": "python",
- "pygments_lexer": "ipython3",
- "version": "3.12.3"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 2
-}